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__.pyhas already importedSourceand included in__all__, so is it more reasonable to changeframe_analyzer.pyline 10from .executing.executing import Source # type: ignoretofrom .executing import Source?