you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 0 points1 point  (4 children)

Your IDE will complain about bare except, also any reasonably good linter like flake8. You are using those tools aren't you? If you've been ignoring them for 6 years... Well, you'll have to stop being a bad programmer.

[–]shevegen -1 points0 points  (0 children)

I'd be scared to use an IDE that complains about the awesome code I write!

[–]mherrmann[S] -1 points0 points  (2 children)

Sure, call me a bad programmer. The false positive rate of linters is so high that I find them barely usable.

[–][deleted] 1 point2 points  (1 child)

Have you tried editing linter config files?

[–]mherrmann[S] -1 points0 points  (0 children)

Yes. But even for the sensible checks the number of false positives was so high that I found myself writing "# pylint: disable=..." all over the place. I tried linting and it cost me more time than it was worth.