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 287ee20 commit b151aa1Copy full SHA for b151aa1
sphinx/util/__init__.py
@@ -62,6 +62,13 @@ def __getattr__(name: str) -> Any:
62
obj: Callable[..., Any]
63
mod: ModuleType
64
65
+ if name == 'console':
66
+ # Explicit temporary workaround for nbsphinx implicit imports.
67
+ # https://github.com/sphinx-doc/sphinx/issues/13352
68
+ import sphinx.util.console as mod
69
+
70
+ return mod
71
72
# RemovedInSphinx90Warning
73
if name == 'split_index_msg':
74
from sphinx.util.index_entries import split_index_msg as obj
0 commit comments