diff --git a/prosto_sms/__init__.py b/prosto_sms/__init__.py index 4dc7607..e69de29 100644 --- a/prosto_sms/__init__.py +++ b/prosto_sms/__init__.py @@ -1 +0,0 @@ -from . import api diff --git a/prosto_sms/exceptions.py b/prosto_sms/exceptions.py index 2385cac..67a136e 100644 --- a/prosto_sms/exceptions.py +++ b/prosto_sms/exceptions.py @@ -11,4 +11,4 @@ class NoAuthData(ApiException): class ApiError(ApiException): - pass \ No newline at end of file + pass diff --git a/prosto_sms/methods.py b/prosto_sms/methods.py index 9fddb12..3b03a1a 100644 --- a/prosto_sms/methods.py +++ b/prosto_sms/methods.py @@ -44,16 +44,15 @@ class Methods: ) ) - def get_message_report( self, *, id: int ) -> models.GetMessageReportData: """ - Implementation of + Implementation of get_msg_report - :param id: + :param id: internal message id :return: result of calling the method """ @@ -68,7 +67,7 @@ class Methods: def get_profile(self) -> models.GetProfileData: """ - Implementation of + Implementation of get_profile :return: result of calling the method """ @@ -85,9 +84,9 @@ class Methods: group_directions: int = None ) -> models.GetPricesData: """ - Implementation of + Implementation of get_prices - :param group_directions: + :param group_directions: id of the route group :return: result of calling the method """ @@ -107,10 +106,10 @@ class Methods: call_protection: int ) -> models.WaitCallData: """ - Implementation of + Implementation of wait_call - :param phone: - :param call_protection: + :param phone: receiver phone number + :param call_protection: call waiting time :return: result of calling the method """ diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..b60d764 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[flake8] +exclude = .git, pycache, venv