Skip to content

Commit 67069a4

Browse files
committed
fix merge artifacts
1 parent de5fe6b commit 67069a4

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

.pre-commit-config.yaml

+1-4
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,7 @@ repos:
3232
- repo: https://github.com/crate-ci/typos
3333
rev: v1.30.3
3434
hooks:
35-
- id: codespell
36-
exclude: "tests/openapi/typescript_converter/test_converter|README.md"
37-
additional_dependencies:
38-
- tomli
35+
- id: typos
3936
- repo: https://github.com/python-formate/flake8-dunder-all
4037
rev: v0.4.1
4138
hooks:

litestar/handlers/websocket_handlers/route_handler.py

-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,6 @@ async def handle(self, connection: WebSocket[Any, Any, Any]) -> None:
158158
if cleanup_group:
159159
async with cleanup_group:
160160
await self.fn(**parsed_kwargs)
161-
await cleanup_group.cleanup()
162161
else:
163162
await self.fn(**parsed_kwargs)
164163

0 commit comments

Comments
 (0)