Skip to content

Commit

Permalink
fix: add missing parenthesis in async callback
Browse files Browse the repository at this point in the history
  • Loading branch information
annehaley authored and johnkit committed Apr 30, 2024
1 parent 231fed5 commit a2e7676
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pan3d/dataset_viewer.py
Original file line number Diff line number Diff line change
Expand Up @@ -590,7 +590,7 @@ def _on_change_dataset_info(self, dataset_info, **kwargs):
def load_dataset():
self.builder.dataset_info = dataset_info

self.run_as_async(load_dataset)
self.run_as_async(load_dataset())

@change("da_active")
def _on_change_da_active(self, da_active, **kwargs):
Expand Down

0 comments on commit a2e7676

Please sign in to comment.