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 b108dcf commit cc7618dCopy full SHA for cc7618d
quartodoc/pandoc/typing.py
@@ -0,0 +1,14 @@
1
+from __future__ import annotations
2
+
3
+# NOTE:
4
+# beartype is a runtime type checker and cannot properly handle
5
+# type aliases defined using forward-references.
6
+# --
7
+# To avoid forward-references, these imported aliases are defined
8
+# in the respective modules outside any typing.TYPE_CHECKING conditions.
9
+# and when the objects they use have also been defined.
10
11
+# When using they they should be imported *outside* the
12
+# typing.TYPE_CHECKING condition
13
+from quartodoc.pandoc.blocks import BlockContent, DefinitionItem
14
+from quartodoc.pandoc.inlines import InlineContent
0 commit comments