mafrosis / jira-offline

Git-like CLI for using Jira offline
https://pypi.org/project/jira-offline
MIT License
5 stars 1 forks source link

Improve mypy support #66

Closed mafrosis closed 4 years ago

mafrosis commented 4 years ago

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.