ugh
the only problem I have with pycharm is that you can't magically suppress inspections for just one piece of code
for example, I have a class that inherits another class, but I specifically do not want to call the parent class's __init__ method because the new one does the same thing but with some added functionality
but pycharm highlights the new init method, because calling the parent's init method is the normal thing to do. which is a small annoyance, but an annoyance nevertheless
the only option for preventing this is an ugly comment above the method definition, or to disable it globally
I guess it wouldn't hurt much to disable it, I'm sure I'd remember to do it in a normal situation, but idk
the point is, why not just keep a small database or something, with all the methods/functions/lines/whatever, and the inspection you want to suppress?
that would mean that other people wouldn't get that same suppression automatically, but I think that's okay, because this seems like the kind of thing that people would want to decide on an individual basis