Fix flake8 configuration to respect Black's 10% rule.

This commit is contained in:
Davide Casale
2024-02-27 18:14:47 +01:00
parent e2257561d9
commit 1a6f4eaa21
3 changed files with 4 additions and 4 deletions

View File

@@ -35,7 +35,7 @@ class Middleware:
def __build_authentication_headers(self, endpoint: str, data: Optional[str] = None):
assert isinstance(self.api_key, str) and isinstance(
self.api_secret, str
), "API_KEY and API_SECRET must be both str to call __build_authentication_headers"
), "API_KEY and API_SECRET must be both strings"
nonce = str(round(time.time() * 1_000_000))