-
-
Notifications
You must be signed in to change notification settings - Fork 387
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(typing): Fix typing in websocket listener class #3765
Conversation
6ba7dbd
to
8813706
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #3765 +/- ##
=======================================
Coverage 98.41% 98.41%
=======================================
Files 339 339
Lines 15371 15371
Branches 1694 1694
=======================================
Hits 15128 15128
Misses 114 114
Partials 129 129 ☔ View full report in Codecov by Sentry. |
8813706
to
b14a90f
Compare
b14a90f
to
4530c6e
Compare
Is there anything preventing this PR from being merged? |
4530c6e
to
b206ca9
Compare
@all-contributors add @olzhasar for bugs and docs |
I've put up a pull request to add @olzhasar! 🎉 |
Documentation preview will be available shortly at https://litestar-org.github.io/litestar-docs-preview/3765 |
Description
Fixes #3763
It seems that declaring the actual method is the only way to comply with
mypy
in such cases.There is a
ruff
rule that forbids empty methods in abstract classes, had to disable that for the relevant module.Closes