Reputation: 21367
I have a PyCharm warning
Python version 3.4, 3.5 do not support a 'F' prefix
I'm using Python 3.7. I've seen the checkbox for whether to check warnings for Python 3.4, 3.5, 3.6, 3.7, etc., but I cannot find it.
How do I shut off this warning?
Upvotes: 2
Views: 1692
Reputation: 7579
You can either disable or tune code compatibility inspection: File - Settings - Editor - Inspections - Code compatibility inspection
.
Inspection that raises a warning could be found by clicking Alt+Enter
on highlighting and selecting Edit inspection profile setting
in the dropdown menu, see screenshot from the documentation: https://www.jetbrains.com/help/pycharm/disabling-and-enabling-inspections.html#suppress-in-editor
Upvotes: 3