Skip to content

Commit 93d4403

Browse files
committed
style: reformat for black v22
1 parent 3f84f1b commit 93d4403

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gitlab/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -701,7 +701,7 @@ def http_request(
701701
result.status_code in [500, 502, 503, 504] and retry_transient_errors
702702
):
703703
if max_retries == -1 or cur_retries < max_retries:
704-
wait_time = 2 ** cur_retries * 0.1
704+
wait_time = 2**cur_retries * 0.1
705705
if "Retry-After" in result.headers:
706706
wait_time = int(result.headers["Retry-After"])
707707
cur_retries += 1

0 commit comments

Comments
 (0)