Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
bistcuite committed Aug 6, 2022
1 parent b856e93 commit a5d16e6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion eitaa/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def send_message(self, chat_id, text, pin=False, view_delete=-1):

def send_file(self, chat_id, caption, file, pin=False, view_delete=-1):
if not isfile(file):
throw Exception(f"File `{file}` not found")
raise Exception(f"File `{file}` not found")

r = requests.post(
f"https://eitaayar.ir/api/{self.token}/sendFile",
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup (
name='eitaa',
version='1.3.2',
version='1.3.3',
packages=['eitaa'],
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.3.2
1.3.3

0 comments on commit a5d16e6

Please sign in to comment.