i have two modules Book Class and Author Class .The author class module imports the book class module as follows
from BookClass import Book
from PersonClass import Person
class Author(Person):
and the book class module also imports the author class module as follows
from AuthorClass import Author
class Book:
when i run any of the two modules it gives me an import error.I am not sure of how to fix this error. Thanks in advance.