基本クラスに import ステートメントがあります。
base.py
import x
import y
import z
Class Base {
...
}
child.py
import x
import y
import z
Class Child(Base) {
...
}
2 つのクラス間のインポート x、y、z の冗長性を排除するにはどうすればよいですか?
基本クラスに import ステートメントがあります。
base.py
import x
import y
import z
Class Base {
...
}
child.py
import x
import y
import z
Class Child(Base) {
...
}
2 つのクラス間のインポート x、y、z の冗長性を排除するにはどうすればよいですか?