dfrankow
dfrankow

Reputation: 21367

Turn off python 3.5 warning in pycharm

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

Answers (1)

user2235698
user2235698

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

Related Questions