Properly sort imports in relevant files causing the ruff CI check to fail.

pull/3507/head
derekpierre 2024-05-28 08:39:33 -04:00
parent 10b6e74854
commit 06e56bbc72
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
from _pydecimal import Decimal
from typing import Union
from _pydecimal import Decimal
from eth_utils import currency
from nucypher.types import ERC20UNits, NuNits, TuNits

View File

@ -1,9 +1,9 @@
import ssl
import time
from _socket import gethostbyname
from typing import Dict, NamedTuple
from urllib.parse import urlparse, urlunparse
from _socket import gethostbyname
from requests import PreparedRequest, Response, Session
from requests.adapters import HTTPAdapter
from requests.exceptions import RequestException