Skip to content

Commit 64b38b6

Browse files
committed
Add linting exceptions
1 parent fb7eec0 commit 64b38b6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

shiny/render/_render.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,12 @@
3939
else:
4040
from typing_extensions import Protocol, runtime_checkable
4141

42-
# These aren't used directly in this file, but they seems necessary for Sphinx to work
42+
# These aren't used directly in this file, but they seems necessary for Sphinx to work
4343
# cleanly.
44-
from htmltools import Tag # pyright: ignore[reportUnusedImport]
44+
from htmltools import Tag # pyright: ignore[reportUnusedImport] # noqa: F401
4545
from htmltools import TagChildArg # pyright: ignore[reportUnusedImport] # noqa: F401
46-
from htmltools import Tagifiable # pyright: ignore[reportUnusedImport]
47-
from htmltools import TagList # pyright: ignore[reportUnusedImport]
46+
from htmltools import Tagifiable # pyright: ignore[reportUnusedImport] # noqa: F401
47+
from htmltools import TagList # pyright: ignore[reportUnusedImport] # noqa: F401
4848

4949
if TYPE_CHECKING:
5050
from ..session import Session

0 commit comments

Comments
 (0)