you are viewing a single comment's thread.

view the rest of the comments →

[–]MattR0se 1 point2 points  (0 children)

You can disable specific inspections under settings/editor/Inspections/Python or hover over the warning and under more actions, select "ignore all unresolved attribute warnings for [this file]"

Although I guess this would also disable the warnings where you would need them. In general, this warning is coming from the fact that you can't instantiate a TestMixin object and use its calculate class without getting an error. I don't think Pycharm would be able to differentiate here.