diff options
author | Alexander_Kabui | 2024-09-03 11:46:21 +0300 |
---|---|---|
committer | Alexander_Kabui | 2024-09-03 11:46:21 +0300 |
commit | dbe79d8a4ca31e23d18b9fdb352dc783c7e0db64 (patch) | |
tree | 0b2190e0a99105e30bfe4dae34523f82b1dd2857 | |
parent | c34d75a29b7d144030542b9de4fd0e0d614303a9 (diff) | |
download | genenetwork3-dbe79d8a4ca31e23d18b9fdb352dc783c7e0db64.tar.gz |
Remove unused imports.
-rw-r--r-- | gn3/api/llm.py | 1 | ||||
-rw-r--r-- | gn3/llms/client.py | 2 |
2 files changed, 0 insertions, 3 deletions
diff --git a/gn3/api/llm.py b/gn3/api/llm.py index 9ee4a79..20831e5 100644 --- a/gn3/api/llm.py +++ b/gn3/api/llm.py @@ -1,6 +1,5 @@ """Api endpoints for gnqa""" import json -from datetime import datetime, timezone from flask import Blueprint from flask import current_app from flask import jsonify diff --git a/gn3/llms/client.py b/gn3/llms/client.py index 9bcb2e3..54a7a17 100644 --- a/gn3/llms/client.py +++ b/gn3/llms/client.py @@ -2,8 +2,6 @@ # pylint: disable=C0301 import json import time - -import requests from requests import Session from requests.adapters import HTTPAdapter from requests.adapters import Retry |