mirror of
				https://github.com/Eledio/superfaktura-client.git
				synced 2025-10-31 16:11:20 +01:00 
			
		
		
		
	currency: fix module by pylint hints
This commit is contained in:
		| @@ -1,3 +1,30 @@ | |||||||
|  | """ | ||||||
|  | Currency Enumeration. | ||||||
|  |  | ||||||
|  | This module provides an enumeration of currencies that can be used in the SuperFaktura API. | ||||||
|  |  | ||||||
|  | Classes: | ||||||
|  |     - Currencies: Enumeration of currencies. | ||||||
|  |  | ||||||
|  | Usage: | ||||||
|  |     from superfaktura.enumerations.currency import Currencies | ||||||
|  |     currency = Currencies.CZK | ||||||
|  | """ | ||||||
|  |  | ||||||
|  |  | ||||||
| class Currencies: | class Currencies: | ||||||
|  |     """ | ||||||
|  |     Currency Enumeration. | ||||||
|  |  | ||||||
|  |     This enumeration represents the different currencies that can be used in the SuperFaktura API. | ||||||
|  |  | ||||||
|  |     Values: | ||||||
|  |         - CZK: Czech Koruna | ||||||
|  |         - EUR: Euro | ||||||
|  |  | ||||||
|  |     Usage: | ||||||
|  |         currency = Currencies.CZK | ||||||
|  |     """ | ||||||
|  |  | ||||||
|     CZK = "CZK" |     CZK = "CZK" | ||||||
|     EUR = "EUR" |     EUR = "EUR" | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user