Sorry if this is 'old hat', but I'd like to find the "proper" way to do this:
I have 2 python files, Foo.py and Bar.py such that
Foo.py calls FuncB() that's in Bar.py and Bar.py calls FuncF() that's in Foo.py.
If each file does an import of the other, won't this cause some kind of problem, or is the correct way of doing this using 'from Bar import FuncB'?