We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0aab1ef commit 925d592Copy full SHA for 925d592
nipype/algorithms/modelgen.py
@@ -161,7 +161,7 @@ def bids_gen_info(
161
for bids_event_file in bids_event_files:
162
with open(bids_event_file) as f:
163
f_events = csv.DictReader(f, skipinitialspace=True, delimiter="\t")
164
- events = [dict(row.items()) for row in f_events]
+ events = list(f_events)
165
if not condition_column:
166
condition_column = "_trial_type"
167
for i in events:
0 commit comments