Skip to content

Commit a7d4af1

Browse files
author
Michael Dayan
committed
Fix linting
1 parent 735e727 commit a7d4af1

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

heudiconv/parser.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -279,9 +279,8 @@ def infotoids(
279279
lgr.info("Study session for %r", study_session_info)
280280

281281
if grouping != "all":
282-
assert (
283-
study_session_info not in study_sessions
284-
), f"Existing study session {study_session_info} already in analyzed sessions {study_sessions.keys()}"
285-
282+
assert (study_session_info not in study_sessions), (
283+
f"Existing study session {study_session_info} "
284+
f"already in analyzed sessions {study_sessions.keys()}")
286285
study_sessions[study_session_info] = seqinfo
287286
return study_sessions

0 commit comments

Comments
 (0)