From ef0974702f82e533f6f9384956d977569f699c57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Richard=20Kub=C3=AD=C4=8Dek?= Date: Sat, 8 Feb 2025 14:32:59 +0100 Subject: [PATCH] currency: fix module by pylint hints --- superfaktura/enumerations/currency.py | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/superfaktura/enumerations/currency.py b/superfaktura/enumerations/currency.py index c30387e..ca928f8 100644 --- a/superfaktura/enumerations/currency.py +++ b/superfaktura/enumerations/currency.py @@ -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"