The awesome/__init__.py file is missing the __all__ variable. This variable should list the public objects that should be imported when someone does from awesome import *. Without it, the behavior of import * is undefined and could lead to unexpected results. It's best practice to explicitly define __all__.
The
awesome/__init__.pyfile is missing the__all__variable. This variable should list the public objects that should be imported when someone doesfrom awesome import *. Without it, the behavior ofimport *is undefined and could lead to unexpected results. It's best practice to explicitly define__all__.