Skip to content

Commit f3f55b9

Browse files
committed
battling the linter
1 parent d6fbefa commit f3f55b9

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

sarracen/readers/read_phantom.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ def _read_apr_file(apr_file, filename):
308308

309309
try:
310310
converted_parts = ([parts[1] if i == 1 else float(p)
311-
for i, p in enumerate(parts)])
311+
for i, p in enumerate(parts)])
312312
except ValueError:
313313
continue
314314

@@ -469,8 +469,9 @@ def read_phantom(filename: str, # noqa: E302
469469
while True:
470470
aprfile = f"apr_{i:03d}.ev"
471471
if os.path.exists(aprfile):
472-
df_apr_entry = _read_apr_file(aprfile,filename)
473-
df_apr = pd.concat([df_apr, df_apr_entry],ignore_index=True)
472+
df_apr_entry = _read_apr_file(aprfile, filename)
473+
df_apr = pd.concat([df_apr, df_apr_entry],
474+
ignore_index=True)
474475
i += 1
475476
else:
476477
break

0 commit comments

Comments
 (0)