Hope you can help me on this, here is the problem: I'm working in "x.py" in which I have imported a lot of functions from another file named "functions.py".
Also, I have some specific functions in other files (s1.py,s2.py lets say...), which I also called in my x.py.
The problem comes when I try to use a function or library from functions.py in order to help me with those specifics files where I have other functions (s1.py, s2.py). They just simply dont recognize the libraries which I already imported... ???
Work around I've been using: declare the libraries needed directly in s1.py and s2.py, but I don't like it to much, it seems like I'm duplicating that code.
Is there any way to get my s1.py and s2.py to recognize the imported libraries in x.py???