Skip to content

Commit c284dd5

Browse files
committed
lints
1 parent 5362294 commit c284dd5

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

shiny/playwright/controller/_input_buttons.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ def expect_disabled(self, value: bool, *, timeout: Timeout = None):
6565
self.loc, "disabled", re.compile(".*") if value else None, timeout=timeout
6666
)
6767

68+
6869
class InputBookmarkButton(
6970
WidthLocStlyeM,
7071
InputActionBase,
@@ -107,6 +108,7 @@ def expect_disabled(self, value: bool, *, timeout: Timeout = None):
107108
self.loc, "disabled", re.compile(".*") if value else None, timeout=timeout
108109
)
109110

111+
110112
class InputDarkMode(UiBase):
111113
"""Controller for :func:`shiny.ui.input_dark_mode`."""
112114

shiny/ui/_input_date.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,13 @@
88

99
from htmltools import Tag, TagAttrValue, TagChild, css, div, span, tags
1010

11+
from shiny.bookmark import restore_input
12+
from shiny.module import resolve_id
13+
1114
from .._docstring import add_example
1215
from ..module import resolve_id
1316
from ._html_deps_external import datepicker_deps
1417
from ._utils import shiny_input_label
15-
from shiny.bookmark import restore_input
16-
from shiny.module import resolve_id
1718

1819

1920
@add_example()

shiny/ui/_input_select.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,14 @@
88
"input_select",
99
"input_selectize",
1010
)
11-
from shiny.bookmark._restore_state import restore_input
1211
import copy
1312
from json import dumps
1413
from typing import Any, Mapping, Optional, Union, cast
1514

1615
from htmltools import Tag, TagChild, TagList, css, div, tags
1716

17+
from shiny.bookmark._restore_state import restore_input
18+
1819
from .._docstring import add_example
1920
from ..module import resolve_id
2021
from ._html_deps_external import selectize_deps

0 commit comments

Comments
 (0)