Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
mojtabaakbari221b committed Feb 20, 2023
1 parent fc3871f commit 5b7dd2b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="smsir-python",
version="1.0.5",
version="1.0.6",
author="Mojtaba Akbari",
author_email="[email protected]",
packages=["sms_ir"],
Expand Down
3 changes: 2 additions & 1 deletion sms_ir/services.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
from .mixins import RequestsMixin, LoggerMixin

T = TypeVar('T', int, None)
S = TypeVar('S', str, None)


class SmsIr(RequestsMixin, LoggerMixin):
Expand Down Expand Up @@ -68,7 +69,7 @@ def send_like_to_like(
numbers: List[str],
messages: List[str],
linenumber: T =None,
send_date_time: str|None =None,
send_date_time: S =None,
) -> Response:
"""
Send multiple messages to multiple mobile numbers pair to pair
Expand Down

0 comments on commit 5b7dd2b

Please sign in to comment.