diff --git a/monobankua/client.py b/monobankua/client.py index 611193f..c9a803b 100755 --- a/monobankua/client.py +++ b/monobankua/client.py @@ -176,7 +176,6 @@ def __str__(self): cashback = f', кешбек {self.cashbackAmount / 100:g} {currency}' if self.cashbackAmount else '' commission = f', комісія {self.commissionRate / 100:g} {currency}' if self.commissionRate else '' category_symbol = '💸' if self.income else self.category.symbol - hold_symbol = '' if self.hold else '✓' datetime = self.datetime.strftime('%d.%m.%Y %H:%M') comment = (f' «{self.comment}»' if self.comment else '').replace('\n', ' ') description = self.description.replace('\n', ' ') diff --git a/setup.py b/setup.py index a88be58..0c6d9f8 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ def find_requires(): setuptools.setup( name='monobankua', - version='0.3.4', + version='0.3.5', author='Sergey Shlyapugin', author_email='shlyapugin@gmail.com', description='Monobank.ua API client',