Skip to content

Commit 0c52020

Browse files
authored
Update src/schema/associations.ts
1 parent cd30d92 commit 0c52020

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/schema/associations.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +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).catch((e) => {}))
90+
const keys = Object.keys(await loadJSON(file).catch((e) => {return {}}))
9191
return {
9292
path: file.path,
9393
keys: keys,

0 commit comments

Comments
 (0)