If you have a script with the same name as your module in another directory, it will use that instead. For example:
module.py
module
|
|--module
| |
| |--__init__.py
| |--module.py
This will make it so that the first module.py is being used, not the second one.