Skip to content

Commit

Permalink
linting - import urllib3 directly, instead of through requests, to ge…
Browse files Browse the repository at this point in the history
…t typing hints.
  • Loading branch information
dustinbleile committed Jul 15, 2024
1 parent 17482ce commit 39cd6d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pori_python/graphkb/util.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import requests
from requests.adapters import HTTPAdapter
from requests.packages.urllib3.util.retry import Retry

import hashlib
import json
Expand All @@ -9,6 +8,7 @@
import time
from datetime import datetime
from typing import Any, Dict, Iterable, List, Optional, Union, cast
from urllib3.util.retry import Retry

from .constants import DEFAULT_LIMIT, DEFAULT_URL, TYPES_TO_NOTATION, AA_3to1_MAPPING
from .types import OntologyTerm, ParsedVariant, PositionalVariant, Record
Expand Down

0 comments on commit 39cd6d9

Please sign in to comment.