Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix import for GUI #781

Merged
merged 1 commit into from
Mar 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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