Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: remove undefined name from
__all__
`__all__` is a list of strings defining what objects in a module will be exported when `from <module> import *` is used on the module. Hence, all the object names mentioned in `__all__` shall be defined in the module. This issue is raised because `__all__` contains atleast one name (See issue title for the exact name) which is not defined in the module. When a wildcard import is attempted on the module with this guilty code, Python will throw an `AttributeError` while trying to import the undefined object.
- Loading branch information