Issue : Missing `__all__` in `awesome/__init__.py`
Author: PrinceSajjadHussainCreated Jun 22, 2025Updated Jun 22, 2025
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__`.
Source: donnemartin/awesome-aws