We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aff03f9 commit dc98eeaCopy full SHA for dc98eea
atcodertools/client/atcoder.py
@@ -71,7 +71,8 @@ def __init__(self):
71
retries = Retry(total=3,
72
backoff_factor=0.5,
73
status_forcelist=[status for status in range(400, 600)])
74
- session.mount("https://", requests.adapters.HTTPAdapter(max_retries=retries))
+ session.mount("https://",
75
+ requests.adapters.HTTPAdapter(max_retries=retries))
76
self._session = session
77
78
def check_logging_in(self):
0 commit comments