diff --git a/src/api/aaq/__init__.py b/src/api/aaq/__init__.py index 6d91a69..b72c4e7 100644 --- a/src/api/aaq/__init__.py +++ b/src/api/aaq/__init__.py @@ -32,7 +32,6 @@ def get_paginated( else: params["offset"] += limit - response_list = [{k: str(v) for k, v in d.items()} for d in response_list] return response_list diff --git a/src/api/aaq/main.py b/src/api/aaq/main.py index 678a8b5..97ba5cb 100644 --- a/src/api/aaq/main.py +++ b/src/api/aaq/main.py @@ -13,12 +13,3 @@ class pyAAQ: faqmatches = FAQMatches(client) inbounds_ud = InboundsUD(client) urgency_rules = UrgencyRules(client) - - def client_close(): - """Exposing the ability to close the client here. - - The client is being used outside of a context manager - and httpx recommends closing these connections in this case. - - """ - client.close()