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 is actually going to require a rather significant restructure of the project and cannot be done cleanly in the time frame before 1.0. Lets take a look at this for 2.0.
This cause here is that the project is structured with one class per file where the classes and files have the same name.
This is not pythonic and confuses python when it comes time to import things (if we export the symbols into the init.py file).
We probably wont be able to change this in a minor version update either since the required restructuring will break any client code expecting the current format.
http://mikegrouchy.com/blog/2012/05/be-pythonic-__init__py.html
lets get rid of the from package.file import File and replace it with from package import File
This can be done by importing the classes within the init.py for each module.
The text was updated successfully, but these errors were encountered: