So i\'m getting this error
Traceback (most recent call last): File \"/Users/alex/dev/runswift/utils/sim2014/simulator.py\", line 3, in f
I was using the following:
from module import Foo foo_instance = Foo()
but to get rid of circular reference I did the following and it worked:
circular reference
import module.foo foo_instance = foo.Foo()