Skip to content

Commit 2441bb4

Browse files
committed
lint II
1 parent 4f099fb commit 2441bb4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pyerrors/input/sfcf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -613,7 +613,7 @@ def _check_append_rep(content, start_list):
613613
if chunk_num == len(start_list) - 1:
614614
stop = len(content)
615615
else:
616-
stop = start_list[chunk_num+1]
616+
stop = start_list[chunk_num + 1]
617617
chunk = content[start:stop]
618618
for linenumber, line in enumerate(chunk):
619619
if line.startswith("[correlator]"):
@@ -625,7 +625,7 @@ def _check_append_rep(content, start_list):
625625
if len(set(header_len_list)) > 1:
626626
warnings.warn("Not all headers have the same length. Data parts do.")
627627
has_regular_len_heads = False
628-
628+
629629
if len(set(data_len_list)) > 1:
630630
raise Exception("Irregularities in file structure found, not all run data are of the same output length")
631631
return has_regular_len_heads

0 commit comments

Comments
 (0)