Skip to content

Commit

Permalink
Bugfix for GitHub issue #253
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelzwiers committed Jan 15, 2025
1 parent 390eb24 commit 740c00a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bidscoin/plugins/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def personals(self, bidsmap: 'BidsMap', datasource: 'DataSource') -> dict:
"""

personals = {}
for key, value in bidsmap.dataformat(datasource.dataformat).participant:
for key, value in bidsmap.dataformat(datasource.dataformat).participant.items():
if key in ('participant_id', 'session_id'):
continue
else:
Expand Down

0 comments on commit 740c00a

Please sign in to comment.