You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Find the spec for a module, optionally relative to the specified package name. If the module is in sys.modules, then sys.modules[name].spec is returned (unless the spec would be None or is not set, in which case ValueError is raised).
If the application is defined in a Python file not belonging to a package, __spec__ won't be set - this is the case of the broken JupyterLab CI test.
The error arises from:
jupyter_server/jupyter_server/utils.py
Line 391 in b4b1517
From the documentation
If the application is defined in a Python file not belonging to a package,
__spec__
won't be set - this is the case of the broken JupyterLab CI test.Xref: jupyterlab/jupyterlab#10682
The text was updated successfully, but these errors were encountered: