Skip to content

Commit

Permalink
Merge pull request #781 from zooniverse/fix-pb-import
Browse files Browse the repository at this point in the history
Fix import for GUI
  • Loading branch information
lcjohnso authored Mar 5, 2024
2 parents 90c5033 + e762405 commit d6b62be
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion panoptes_aggregation/scripts/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from .config_workflow_panoptes import config_workflow
from .extract_panoptes_csv import extract_csv
from .reduce_panoptes_csv import reduce_csv
from .batch_utils import progressbar as pbe
from .batch_utils import progressbar as pb
from .path_type import PathType
from .gui_overrides import gui_override, pbar_override
from .aggregation_parser import main as parser_main
3 changes: 1 addition & 2 deletions panoptes_aggregation/scripts/gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,7 @@
except ImportError:
raise ImportError('The GUI component is not installed, reinstall with `pip install -U panoptes_aggregation[gui]`')

panoptes_aggregation.scripts.pbar_override(panoptes_aggregation.scripts.pbe)
panoptes_aggregation.scripts.pbar_override(panoptes_aggregation.scripts.pbr)
panoptes_aggregation.scripts.pbar_override(panoptes_aggregation.scripts.pb)
panoptes_aggregation.scripts.gui_override(gooey)

current_folder = os.path.dirname(os.path.abspath(__file__))
Expand Down

0 comments on commit d6b62be

Please sign in to comment.