为了组织起见,我将每个班级都保存在自己的文件中。我还有用于将 GUI 对象与常规对象分开的文件夹。我正在考虑从模块的init .py 中导入类以使导入更整洁。
例如,而不是:
from myapp.widgets.preferencesdialog import PreferencesDialog
我会改为PreferencesDialog
从内部导入,widgets/__init__.py
以便应用程序的其余部分只需要执行以下操作:
from myapp.widgets import PreferencesDialog
我会遇到这种方法的任何问题吗?