currency: fix module by pylint hints

This commit is contained in:
Richard Kubíček
2025-02-08 14:32:59 +01:00
parent cdd7149f71
commit ef0974702f

View File

@@ -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:
"""
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"
EUR = "EUR"