Skip to content

Commit 1388794

Browse files
committed
fixing imports
1 parent e007836 commit 1388794

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+49
-23
lines changed

tests/playwright/shiny/tests_for_ai_generated_apps/accordion_panel/app-express.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from shiny import reactive
2-
from shiny.express import input, ui, render
2+
from shiny.express import input, render, ui
33

44
# Add Font Awesome CSS in the head section first
55
ui.head_content(

tests/playwright/shiny/tests_for_ai_generated_apps/card/app-express.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from shiny import reactive
2-
from shiny.express import input, ui, render
2+
from shiny.express import input, render, ui
33

44
# Set page options
55
ui.page_opts(fillable=True)

tests/playwright/shiny/tests_for_ai_generated_apps/card/test_card_core_express.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
from playwright.sync_api import Page
2+
23
from shiny.playwright import controller
3-
from shiny.run import ShinyAppProc
44
from shiny.pytest import create_app_fixture
5-
5+
from shiny.run import ShinyAppProc
66

77
app = create_app_fixture(["app-core.py", "app-express.py"])
88

tests/playwright/shiny/tests_for_ai_generated_apps/card_footer/app-core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from shiny import App, render, reactive, ui
1+
from shiny import App, reactive, render, ui
22

33
app_ui = ui.page_fillable(
44
# First card with basic footer

tests/playwright/shiny/tests_for_ai_generated_apps/card_footer/app-express.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from shiny.express import input, ui, render
1+
from shiny.express import input, render, ui
22

33
# Set page options including title
44
ui.page_opts(title="Card Footer Demo", fillable=True)

tests/playwright/shiny/tests_for_ai_generated_apps/card_footer/test_card_footer_core_express.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
from playwright.sync_api import Page
2+
23
from shiny.playwright import controller
3-
from shiny.run import ShinyAppProc
44
from shiny.pytest import create_app_fixture
5+
from shiny.run import ShinyAppProc
56

67
app = create_app_fixture(["app-core.py", "app-express.py"])
78

tests/playwright/shiny/tests_for_ai_generated_apps/input_action_button/app-express.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from shiny import reactive
2-
from shiny.express import input, ui, render
2+
from shiny.express import input, render, ui
33

44
# Add Font Awesome CSS for icons - this needs to be before any UI elements
55
ui.head_content(

tests/playwright/shiny/tests_for_ai_generated_apps/input_action_button/test_input_action_button_core_express.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
from playwright.sync_api import Page
2+
23
from shiny.playwright import controller
34
from shiny.pytest import create_app_fixture
45
from shiny.run import ShinyAppProc

tests/playwright/shiny/tests_for_ai_generated_apps/input_action_link/test_input_action_link_core_express.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
from playwright.sync_api import Page, expect
2+
23
from shiny.playwright import controller
34
from shiny.pytest import create_app_fixture
45
from shiny.run import ShinyAppProc

tests/playwright/shiny/tests_for_ai_generated_apps/input_checkbox/app-express.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
from shiny import reactive
2-
from shiny.express import input, ui, render
3-
2+
from shiny.express import input, render, ui
43

54
with ui.card():
65
ui.card_header("Checkbox Demo")

0 commit comments

Comments
 (0)