File Directory
spider
-models
-test.py
-customer.py
text.py
from customer import Customer
customer = Customer()
PyCharm will prompt Unresolved reference 'customer'
The program runs without problems
I would like to ask, how to make the editor correctly identify the path?
from models.customer import Customer