We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 606bcca commit 567cd2dCopy full SHA for 567cd2d
shiny/render/_render.py
@@ -41,6 +41,14 @@
41
42
from htmltools import TagChildArg
43
44
+# These aren't used directly in this file, but they seems necessary for Sphinx to work
45
+# cleanly.
46
+from htmltools import ( # pyright: ignore[reportUnusedImport] # noqa: F401
47
+ Tagifiable, # pyright: ignore[reportUnusedImport]
48
+ Tag, # pyright: ignore[reportUnusedImport]
49
+ TagList, # pyright: ignore[reportUnusedImport]
50
+)
51
+
52
if TYPE_CHECKING:
53
from ..session import Session
54
from ..session._utils import RenderedDeps
0 commit comments