python-terminusgps 40.1.0__py3-none-any.whl → 40.1.2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of python-terminusgps might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python-terminusgps
3
- Version: 40.1.0
3
+ Version: 40.1.2
4
4
  Summary: Provides abstractions/utilities for working with Wialon API, Authorize.NET API, AWS API, and more.
5
5
  Project-URL: Documentation, https://docs.terminusgps.com
6
6
  Project-URL: Repository, https://github.com/terminusgps/python-terminusgps
@@ -2,7 +2,7 @@ terminusgps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
2
  terminusgps/authorizenet/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
3
  terminusgps/authorizenet/auth.py,sha256=CKT_pfDEL-53GceOEaFtIU6IBXVuVd8MVHikpPAX0xY,1184
4
4
  terminusgps/authorizenet/constants.py,sha256=uXkYVmQPrnYBDfGahVEmzwTny21A8jGcrH7qfSdLhvc,512
5
- terminusgps/authorizenet/controllers.py,sha256=Kqp-cvHwX_TCbRa_xoCVV6A9Ky1bQuaX8PJpQFRfFOI,2685
5
+ terminusgps/authorizenet/controllers.py,sha256=L4j4TGDUTuSSf4bGzFOsG6HBYpqf974osWYCPc51PN8,2752
6
6
  terminusgps/authorizenet/subscriptions.py,sha256=8QPLMwLXHu3SLapGsNKoasTUiPqCd7GkK7UpXsXp5wk,3996
7
7
  terminusgps/authorizenet/utils.py,sha256=LosPGnOam97Fk51aoCAIdoyrQRdxV43mXxpZ1TsmPDQ,7042
8
8
  terminusgps/authorizenet/validators.py,sha256=Z4JfKMHhMIH9elsmzW-6KHi9TwOlNp3h_uvtRPCX0GI,3822
@@ -35,7 +35,7 @@ terminusgps/wialon/items/route.py,sha256=2dEUK9o8nwutPE03W-5GUcZrjGvbwLoExVnFV9L
35
35
  terminusgps/wialon/items/unit.py,sha256=kee7dwpvjxbfDuRFzqbhKjLWjCN9iAimkjTyMilqKek,12124
36
36
  terminusgps/wialon/items/unit_group.py,sha256=HhYMZ9b7UATXeEgHkXN9r5-M_w82fabjDYADCUwBtxQ,4442
37
37
  terminusgps/wialon/items/user.py,sha256=pR6OTrm6f7Zo0J8eLvKtWVsdhGi430OxMsMMthGh8YE,5382
38
- python_terminusgps-40.1.0.dist-info/METADATA,sha256=1BvaYYwi2wGVfwAmMZHfEy7ZVjNKxKYIZ-c4zk7JdjU,1036
39
- python_terminusgps-40.1.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
40
- python_terminusgps-40.1.0.dist-info/licenses/COPYING,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
41
- python_terminusgps-40.1.0.dist-info/RECORD,,
38
+ python_terminusgps-40.1.2.dist-info/METADATA,sha256=LRt4TBN4xGkRFFX2jOUAVLDjKmvRogWeBp5JB94UNug,1036
39
+ python_terminusgps-40.1.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
40
+ python_terminusgps-40.1.2.dist-info/licenses/COPYING,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
41
+ python_terminusgps-40.1.2.dist-info/RECORD,,
@@ -16,9 +16,12 @@ def execute_controller(controller: APIOperationBase) -> dict[str, typing.Any] |
16
16
  :rtype: :py:obj:`dict` | :py:obj:`None`
17
17
 
18
18
  """
19
- controller.setenvironment(get_environment())
20
- controller.execute()
21
- response = controller.getresponse()
19
+ try:
20
+ controller.setenvironment(get_environment())
21
+ controller.execute()
22
+ response = controller.getresponse()
23
+ except Exception:
24
+ response = None
22
25
 
23
26
  if response is not None and response.messages.resultCode != "Ok":
24
27
  raise AuthorizenetControllerExecutionError(