Unresolved reference - anyway to get it to ignore?
Hi all,
Getting an unignorable error on these two imports - they work in production and there is no need to change them. How can I go about getting PyCharm to ignore them?
Thanks!
Please sign in to leave a comment.
Hello,
You can simply add "# noqa " comment on the line, please see details here https://www.jetbrains.com/help/pycharm/disabling-and-enabling-inspections.html#suppress-in-editor
Thanks!