Skip to content

Commit

Permalink
fixing small bug: validation_functions function argument as variable …
Browse files Browse the repository at this point in the history
…instead of all_validation_functions (#119)
  • Loading branch information
viktorpm authored Feb 12, 2024
1 parent 03392f3 commit b195cb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bg_atlasgen/validate_atlases.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ def validate_atlas(atlas_name, version, validation_functions):

validation_results = {atlas_name: []}

for i, validation_function in enumerate(all_validation_functions):
for i, validation_function in enumerate(validation_functions):
try:
validation_function(BrainGlobeAtlas(atlas_name))
validation_results[atlas_name].append(
Expand Down

0 comments on commit b195cb6

Please sign in to comment.