Skip to content

Commit cd30d92

Browse files
drammockeffigies
andauthored
Update src/schema/associations.ts
Co-authored-by: Chris Markiewicz <[email protected]>
1 parent 5c32a78 commit cd30d92

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/schema/associations.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,10 +87,7 @@ const associationLookup = {
8787
}
8888
},
8989
coordsystem: async (file: BIDSFile, options: { maxRows: number }): Promise<{path: string, keys: string[]}> => {
90-
const keys = Object.keys(await loadJSON(file, options.maxRows)
91-
.catch((e) => {
92-
return []
93-
}))
90+
const keys = Object.keys(await loadJSON(file).catch((e) => {}))
9491
return {
9592
path: file.path,
9693
keys: keys,

0 commit comments

Comments
 (0)