Skip to content

Commit

Permalink
style: reformat run_checks.py
Browse files Browse the repository at this point in the history
  • Loading branch information
TheUnderScorer committed Sep 9, 2022
1 parent 0eef9c0 commit b538790
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions run_checks.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import os

import fingerprint_pro_server_api_sdk
from fingerprint_pro_server_api_sdk import Response
from fingerprint_pro_server_api_sdk import EventResponse
from fingerprint_pro_server_api_sdk import Response
from fingerprint_pro_server_api_sdk.rest import ApiException
from fingerprint_pro_server_api_sdk import ProductsResponse
import os

# configure
configuration = fingerprint_pro_server_api_sdk.Configuration(api_key=os.environ["PRIVATE_KEY"], region="us")
Expand All @@ -22,12 +22,11 @@
print("Exception when calling DefaultApi->visitors_visitor_id_get: %s\n" % e)
exit(1)


try:
events_response: EventResponse = api_instance.get_event(request_id)

except ApiException as e:
print("Exception when calling DefaultApi->get_event: %s\n" % e)
exit(1)

exit(0)
exit(0)

0 comments on commit b538790

Please sign in to comment.