Skip to content

Commit

Permalink
Merge pull request #1860 from bids-standard/fix/unawaited_async_call
Browse files Browse the repository at this point in the history
Loading nifti headers wasn't awaited for some reason in load associations.
  • Loading branch information
effigies authored Dec 14, 2023
2 parents 1163824 + 5c0b910 commit 01816c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bids-validator/src/schema/context.ts
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ export class BIDSContext implements Context {
this.loadSidecar(),
this.loadColumns(),
this.loadAssociations(),
this.loadNiftiHeader(),
])
this.loadNiftiHeader()
}
}

0 comments on commit 01816c6

Please sign in to comment.