Skip to content

Commit

Permalink
fixed type error
Browse files Browse the repository at this point in the history
  • Loading branch information
ymitiku committed Aug 28, 2019
1 parent 642790c commit 2b4f68d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion am_num2word/__init__.py
Expand Up @@ -158,7 +158,7 @@ def remove_zeros(self):
else:
output: List[Group] = []
for i in range(len(self.int_groups)):
if self.int_groups[i].to_words().strip() != "ዜሮ" and self.groups[i].to_words().strip() != "duwwaa":
if self.int_groups[i].to_words().strip() != "ዜሮ" and self.int_groups[i].to_words().strip() != "duwwaa":
output.append(self.int_groups[i])
return output
def get_float_part_words(self):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="am_num2word",
version="1.0.1",
version="1.0.2",
author="Mitiku Yohannes",
author_email="se.mitiku.yohannes@gmail.com",
description="Number to Amharic words representation package",
Expand Down

0 comments on commit 2b4f68d

Please sign in to comment.