I have three classes having to import each others methods. The statements would be as follows in the corresponding files with classes:
File A with class a
from B import b
File B with class b
from C import c
File C with class c
from A import a
Why does this not work in python? I rather get the error message:
ImportError: cannot import name a