Skip to content

Commit

Permalink
fix: lints
Browse files Browse the repository at this point in the history
since python specs change every single second i guess
  • Loading branch information
Alex4386 committed Nov 29, 2022
1 parent e0d5a00 commit 03b4a45
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@
# Override XML RPC Settings for 64bit support
try:
# for legacy support. xmlrpc prior to 3.5 has it in __init__.py
xmlrpc.client.MAXINT = 2 ** 63 - 1
xmlrpc.client.MININT = -(2 ** 63)
xmlrpc.client.MAXINT = 2**63 - 1
xmlrpc.client.MININT = -(2**63)
except Exception:
from xmlrpc import client

client.MAXINT = 2 ** 63 - 1
client.MININT = -(2 ** 63)
client.MAXINT = 2**63 - 1
client.MININT = -(2**63)

uvicorn_log_config = uvicorn.config.LOGGING_CONFIG
del uvicorn_log_config["loggers"]["uvicorn"]
Expand Down

0 comments on commit 03b4a45

Please sign in to comment.