Skip to content

Commit

Permalink
Fix import
Browse files Browse the repository at this point in the history
Fix import
  • Loading branch information
JE-Chen committed Jan 4, 2025
1 parent e6b2e45 commit 0775bed
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions dev_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ je-load-density
je-auto-control
je-web-runner
je-mail-thunder
je_editor
test_pioneer_dev
sphinx
sphinx-rtd-theme
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "test_pioneer_dev"
version = "0.0.38"
version = "0.0.39"
authors = [
{ name = "JE-Chen", email = "[email protected]" },
]
Expand Down
4 changes: 2 additions & 2 deletions test_pioneer/test_pioneer_editor_ui/menu/menu_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from typing import TYPE_CHECKING

from je_editor import JEBrowser
from je_editor import BrowserWidget

if TYPE_CHECKING:
from test_pioneer.test_pioneer_editor_ui.editor_main.main_ui import AutomationEditor
Expand All @@ -11,6 +11,6 @@
def open_web_browser(
automation_editor_instance: AutomationEditor, url: str, tab_name: str) -> None:
automation_editor_instance.tab_widget.addTab(
JEBrowser(start_url=url),
BrowserWidget(start_url=url),
f"{tab_name}{automation_editor_instance.tab_widget.count()}"
)

0 comments on commit 0775bed

Please sign in to comment.