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?
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
?