This is a confusing title, so I'll explain my situation here. I have 3 files:
file.py:
class me:
    def update(self):
        # Code to update something
main.py:
import file
import other # Because it uses some classes from other
obj = me()
other.py:
# From here I need to be able to run the update() function that is shown in file.py
So, as it says, in other.py I need to be able to run the update() function on the object of the me class (which is created in main.py)
 
    