I have a file named "dependencies.py" in a new spyder project A in a folder.
I have also a file "dependencies.py" in a different earlier spyder project B in a different folder.
Whenever I import the file "dependencies.py" from a file in project A the module "dependencies.py" from project B gets imported.
I use :
from dependencies import *
How to rectify this?
Edit : I donot want to change the name of the files.
Edit 2 : Is there a way i can force spyder to reload a module before execution?