File tree Expand file tree Collapse file tree 4 files changed +528
-455
lines changed Expand file tree Collapse file tree 4 files changed +528
-455
lines changed Original file line number Diff line number Diff line change 1717 - id : mixed-line-ending
1818 - id : trailing-whitespace
1919 - repo : https://github.com/charliermarsh/ruff-pre-commit
20- rev : " v0.11.9 "
20+ rev : " v0.12.0 "
2121 hooks :
2222 - id : ruff
2323 args : ["--fix"]
3030 additional_dependencies :
3131 - tomli
3232 - repo : https://github.com/pre-commit/mirrors-mypy
33- rev : " v1.15.0 "
33+ rev : " v1.16.1 "
3434 hooks :
3535 - id : mypy
3636 exclude : " docs"
Original file line number Diff line number Diff line change @@ -230,7 +230,7 @@ async def set_json_handlers(conn: "AsyncpgConnection") -> None:
230230 format = "text" ,
231231 )
232232 if user_init not in (None , Empty ):
233- await user_init (conn )
233+ await user_init (conn ) # type: ignore[misc,unused-ignore]
234234
235235 # Only inject if at least one is not None
236236 if self .json_serializer is not None or self .json_deserializer is not None :
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ license = { text = "MIT" }
3232name = " litestar-asyncpg"
3333readme = " README.md"
3434requires-python = " >=3.9"
35- version = " 0.4 .0"
35+ version = " 0.5 .0"
3636
3737[project .urls ]
3838Changelog = " https://litestar-org.github.io/litesatr-asyncpg/latest/changelog"
You can’t perform that action at this time.
0 commit comments