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
I think that might be the issue, flask is iterating module names internally with this code
for module in list(sys.modules.values()):
name = getattr(module, "__file__", None)
if name is None or name.startswith(_ignore_always):
continue
Yielding
if name is None or name.startswith(_ignore_always):
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "D:\Venvs\Python311\Lib\site-packages\generalimport\fake_module.py", line 19, in error_func
raise MissingOptionalDependency(f"Optional dependency {name} was used but it isn't installed.")
generalimport.exception.MissingOptionalDependency: Optional dependency 'pandas' was used but it isn't installed.
Didn't look too much into it, but this seems like an issue!
Could allow string methods or something, but that's not the root issue
The text was updated successfully, but these errors were encountered:
I think that might be the issue, flask is iterating module names internally with this code
Yielding
Didn't look too much into it, but this seems like an issue!
Could allow string methods or something, but that's not the root issue
The text was updated successfully, but these errors were encountered: