Unresolved reference for existing module
已回答
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.
请先登录再写评论。
Hello.
Do you have project to reproduce? Please provide project structure at least, so we can check "mysite" is in source.