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 f464954 commit 7baa6d3Copy full SHA for 7baa6d3
nipype/algorithms/modelgen.py
@@ -169,7 +169,7 @@ def bids_gen_info(bids_event_files,
169
info = []
170
for bids_event_file in bids_event_files:
171
with open(bids_event_file) as f:
172
- f_events = csv.DictReader(f, skipinitialspace=True, delimiter=str_basetype('\t'))
+ f_events = csv.DictReader(f, skipinitialspace=True, delimiter='\t')
173
events = [{k: v for k, v in row.items()} for row in f_events]
174
if not condition_column:
175
condition_column = '_trial_type'
0 commit comments