Skip to content

Commit cffe5b4

Browse files
committed
ruff
1 parent 25422d1 commit cffe5b4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

v03_pipeline/lib/misc/allele_registry.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,9 @@ def register_alleles(
9898
data = vcf_in.read()
9999
s = requests.Session()
100100
retries = Retry(
101-
total=5, backoff_factor=1, status_forcelist=[500, 502, 503, 504]
101+
total=5,
102+
backoff_factor=1,
103+
status_forcelist=[500, 502, 503, 504],
102104
)
103105
s.mount('https://', HTTPAdapter(max_retries=retries))
104106
res = s.put(

0 commit comments

Comments
 (0)