It sounds like you have module-level behavior you don't want to happen
during normal import-time. If that is the case, move that behavior into a
class or function you can invoke at the correct time, rather than trying to
do your imports at strange times.
On Mon, Sep 2, 2019 at 11:50 AM Spencer Du
Hi
How can I execute "from devicesEmbedded import *" after this: "print("Device
added to list")" in GUI.py because currently if I have the import added at the
top of GUI.py file it always executes first before the GUI.py file is executed.
I want the devicesEmbedded.py to execute after GUI.py ha