-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Fix various typos #6263
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
Fix various typos #6263
Conversation
Found via `codespell -q 3 -L alo,asend,ba,nams,spawnve` Originally found downstream python/mypy#11498 (comment)
API changes in 4da3ef5 |
This comment has been minimized.
This comment has been minimized.
1 similar comment
This comment has been minimized.
This comment has been minimized.
Thanks! You'll want to walk back the API changes, until the actual packages have changed them and made releases with the changes. The caldav one seems fixed on master, but is unreleased: python-caldav/caldav@17ce149#diff-b555f28986a83b009effbdd857352e16a2efd9407704f09477a2c844e8badbe0 |
stubs/PyYAML/yaml/emitter.pyi
Outdated
@@ -35,7 +35,7 @@ class Emitter: | |||
line: Any | |||
column: Any | |||
whitespace: Any | |||
indention: Any | |||
indentation: Any |
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.
This is what it's actually called in pyyaml (at least as of version 6.0), so we can't change this. Same for the other change in this file.
stubs/caldav/caldav/lib/error.pyi
Outdated
@@ -19,6 +19,6 @@ class PutError(DAVError): ... | |||
class DeleteError(DAVError): ... | |||
class NotFoundError(DAVError): ... | |||
class ConsistencyError(DAVError): ... | |||
class ReponseError(DAVError): ... | |||
class ResponseError(DAVError): ... |
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.
Similarly, this really is called ReponseError
in caldav. I think it's worth adding a comment here in case a future reader is confused.
This reverts commit 4da3ef5.
According to mypy_primer, this change has no effect on the checked open source code. 🤖🎉 |
Found via
codespell -q 3 -L alo,asend,ba,nams,spawnve
Originally found downstream python/mypy#11498 (comment)