How to disable underline from comment section in pycharm?
Answered
I am using pyCharm for a few weeks. While using it, it's really annoying that comments are underlined for some reasons. I have added an image to clarify. How to get rid of this underlines?

Please sign in to leave a comment.
Hi Saifulbari! Comments are underlined because you have PEP 8 violation there - one have to put a space after comment sign and before comment message.
If this syntax is what you want - you can disable this inspection manually:
Thanks you for your answer.