Skip to content

Commit

Permalink
ترقيع خلل لا يمكن دمج tuple في مصفوفة
Browse files Browse the repository at this point in the history
  • Loading branch information
vzool committed Jul 29, 2024
1 parent 26aafc7 commit 231e0cb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = 'zakat'
version = '0.2.85'
version = '0.2.86'
authors = [
{ name='Abdelaziz Elrashed Elshaikh Mohamed', email='aeemh.sdn@gmail.com' },
]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='zakat',
version='0.2.85',
version='0.2.86',
description='A Python Library for Islamic Financial Management.',
author='Abdelaziz Elrashed Elshaikh Mohamed',
author_email='aeemh.sdn@gmail.com',
Expand Down
4 changes: 2 additions & 2 deletions zakat/zakat_tracker.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ def Version() -> str:
Returns:
str: The current version of the software.
"""
return '0.2.85'
return '0.2.86'

@staticmethod
def ZakatCut(x: float) -> float:
Expand Down Expand Up @@ -1925,7 +1925,7 @@ def import_csv(self, path: str = 'file.csv', debug: bool = False) -> tuple:
pass
# TODO: not allowed for negative dates in the future after enhance time functions
if date == 0 or value == 0:
bad[i] = row + ('invalid date',)
bad[i] = row + ['invalid date']
continue
if date not in data:
data[date] = []
Expand Down

0 comments on commit 231e0cb

Please sign in to comment.