Skip to content

Commit 5c32a78

Browse files
drammockeffigies
andauthored
Apply suggestions from code review
Co-authored-by: Chris Markiewicz <[email protected]>
1 parent cd976b5 commit 5c32a78

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/schema/associations.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,10 +86,10 @@ const associationLookup = {
8686
sampling_frequency: columns.get('sampling_frequency'),
8787
}
8888
},
89-
coordsystem: async (file: BIDSFile, options: { maxRows: number }): Promise<Channels> => {
89+
coordsystem: async (file: BIDSFile, options: { maxRows: number }): Promise<{path: string, keys: string[]}> => {
9090
const keys = Object.keys(await loadJSON(file, options.maxRows)
9191
.catch((e) => {
92-
return new Map()
92+
return []
9393
}))
9494
return {
9595
path: file.path,

0 commit comments

Comments
 (0)