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
When I'm referencing the project structure, it is found that executing/__init__.py has already imported Source and included in __all__, so is it more reasonable to change frame_analyzer.py line 10 from .executing.executing import Source # type: ignore to from .executing import Source?
The text was updated successfully, but these errors were encountered:
When I'm referencing the project structure, it is found that
executing/__init__.py
has already importedSource
and included in__all__
, so is it more reasonable to changeframe_analyzer.py
line 10from .executing.executing import Source # type: ignore
tofrom .executing import Source
?The text was updated successfully, but these errors were encountered: