Unresolved reference for existing module
Answered
I am importing some functions from files in "mysite" module, which is included in INSTALLED_APPS in the base.py file:
INSTALLED_APPS = (
# ...
'mysite',
)
When running the app and using these functions, no errors are reported. However, PyCharm marks "mysite" as 'Unresolved reference'. How can I fix this annoying notification? This never happened to me before.
Please sign in to leave a comment.
Hello.
Do you have project to reproduce? Please provide project structure at least, so we can check "mysite" is in source.