from cell.actors import Actor
The above import produces an unresolved error in major IDEs like Pycharm. Tried looking everywhere in the documentation of Celery/cell. The exact problem when ran in terminal looks as follows:
ImportError: cannot import name 'ipublish' from 'kombu.common'
As explained on their website, Cell is an actor framework for Kombu, a messaging library for Python.
I checked everywhere in source files cell/actors.py and kombu/common.py for the error and the files seemed to be correct and no error in code. Therefore, there must be some environmental mismatch problem.