Apply isort to all python files (bfxapi/**/*.py).

This commit is contained in:
Davide Casale
2024-02-26 19:36:10 +01:00
parent d3f402fbc7
commit 2b7dfc5b8a
29 changed files with 224 additions and 196 deletions

View File

@@ -1,16 +1,17 @@
from typing import TYPE_CHECKING, Optional, Any
import hashlib
import hmac
import json
import time
from enum import IntEnum
from http import HTTPStatus
from typing import TYPE_CHECKING, Any, Optional
import time, hmac, hashlib, json, requests
import requests
from ..exceptions import NotFoundError, RequestParametersError, UnknownGenericError
from ...exceptions import InvalidCredentialError
from ..._utils.json_encoder import JSONEncoder
from ..._utils.json_decoder import JSONDecoder
from ..._utils.json_encoder import JSONEncoder
from ...exceptions import InvalidCredentialError
from ..exceptions import NotFoundError, RequestParametersError, UnknownGenericError
if TYPE_CHECKING:
from requests.sessions import _Params