Skip to content

Commit 8d43d9d

Browse files
committed
Modify the imports to match the expected import structure
1 parent c59ca9c commit 8d43d9d

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

shiny/ui/_accordion.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,10 @@
44

55
from htmltools import Tag, TagAttrs, TagAttrValue, TagChild, css, tags
66

7-
from shiny.bookmark._restore_state import restore_input
8-
97
from .._docstring import add_example
108
from .._namespaces import resolve_id_or_none
119
from .._utils import drop_none, private_random_id
10+
from ..bookmark import restore_input
1211
from ..session import require_active_session
1312
from ..types import MISSING, MISSING_TYPE
1413
from ._html_deps_shinyverse import components_dependencies

shiny/ui/_navs.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,11 @@
1818
tags,
1919
)
2020

21-
from shiny.bookmark._restore_state import restore_input
22-
2321
from .._deprecated import warn_deprecated
2422
from .._docstring import add_example
2523
from .._namespaces import resolve_id_or_none
2624
from .._utils import private_random_int
25+
from ..bookmark import restore_input
2726
from ..types import DEPRECATED, MISSING, MISSING_TYPE, NavSetArg
2827
from ._bootstrap import column, row
2928
from ._card import CardItem, WrapperCallable, card, card_body, card_footer, card_header

shiny/ui/_sidebar.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,11 @@
1616
tags,
1717
)
1818

19-
from shiny.bookmark._restore_state import restore_input
20-
2119
from .._docstring import add_example, no_example
2220
from .._namespaces import resolve_id_or_none
2321
from .._typing_extensions import TypedDict
2422
from .._utils import private_random_id
23+
from ..bookmark import restore_input
2524
from ..module import ResolvedId
2625
from ..session import require_active_session
2726
from ..types import MISSING, MISSING_TYPE

0 commit comments

Comments
 (0)