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
this would allow to import all classes directly in external code instead of having to know the sub-module where the class of interest is defined. example: With this,
fromodxtools.diaglayerimportDiagLayer
could be replaced by
fromodxtoolsimportDiagLayer
On the flipside, this increases the effort required for maintenance, because all classes provided by the project would need to be imported to __init__.py.
The text was updated successfully, but these errors were encountered:
this would allow to import all classes directly in external code instead of having to know the sub-module where the class of interest is defined. example: With this,
could be replaced by
On the flipside, this increases the effort required for maintenance, because all classes provided by the project would need to be imported to
__init__.py
.The text was updated successfully, but these errors were encountered: