Implement mypy strict flag #1186
Unanswered
nathanrpage97
asked this question in
Ideas
Replies: 1 comment
-
There's little benefit in fixing most of those errors. And you may end up littering the code with "type: ignore" to fix them. However, if you are prepared to do the work, I'm sure I could maintain the strict level going forward... |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
What are your thoughts on implementing Mypy strict flag?
Some of the rich functions currently fail when I use
mypy --strict
on my own projects. (e.g.,console.print
isn't fully typed).I'd be willing to fix the issues that currently exist, but wanted to make sure you think it is worth it first. At least fixing console.print to be fully typed would be a backup proposal.
Here are the logs when I run
mypy
with the strict flag enabled.Beta Was this translation helpful? Give feedback.
All reactions