Key fix in this P/R is the use of disable=no-member application wide, and the cast() wrapped in Issue.deserialize.
Pylint doesn't need to check types (or members of types), because mypy does that, and now we don't have the two type-checking systems disagreeing with each other.
Key fix in this P/R is the use of
disable=no-member
application wide, and thecast()
wrapped inIssue.deserialize
.Pylint doesn't need to check types (or members of types), because mypy does that, and now we don't have the two type-checking systems disagreeing with each other.