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
In #309 some base classes were moved into the corresponding __init__.py files for consistency reasons. This lead to circular imports which needed to be fixed in #331. However, the circular imports could have been avoided with having the definitions of base classes in separate files and not in the __init__.py files.
Therefore, moving all base class definitions into separate files would make sense.
The text was updated successfully, but these errors were encountered:
In #309 some base classes were moved into the corresponding
__init__.py
files for consistency reasons. This lead to circular imports which needed to be fixed in #331. However, the circular imports could have been avoided with having the definitions of base classes in separate files and not in the__init__.py
files.Therefore, moving all base class definitions into separate files would make sense.
The text was updated successfully, but these errors were encountered: