-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Zoom Rooms - improvements in base Zoom plugin #236
Conversation
eec817a
to
8efeb20
Compare
c772110
to
5cdf0d5
Compare
mypy.ini
Outdated
@@ -0,0 +1,2 @@ | |||
[mypy] | |||
disable_error_code = misc, import-untyped, import-not-found |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we perhaps start running mypy in the CI? The zoom plugin currently passes without warnings
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually, do we even need import-not-found
there?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
But yeah, I vote in favour. But maybe in a separate PR? 😄
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Or Pyright (used by Pylance) which tends to have fewer false positives and doesn't lag behind new features as much as mypy does
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
At some point (next year would be my guess) there will probably be a type checker from the ruff/uv guys as well... ;)
4e4187d
to
e08daa8
Compare
27fb948
to
9196c02
Compare
0b1ae95
to
8b94099
Compare
This goes with indico/indico#6475
Main changes (Zoom):
The TS PR is also included, since I rely on it.