I have a module that keep tracks of all the usage log, (usage.py)
I then created another module for drawing charts, (chart.py) I wanna keep track of people using my chart.py, thus, I import usage.py into my chart.
Everything seems cool up to this point.
Now, I wanna display the chart of the usage in usage.py, thus, I tried to import chart.py into usage.py.
Kaboom ! It gives me this error:-
ImportError: cannot import name chart.
Anyway to solve this?
Thanks in advance.