Skip to content

Commit

Permalink
feat: remove extra ignores
Browse files Browse the repository at this point in the history
  • Loading branch information
cofin committed Sep 22, 2024
1 parent 451fa69 commit e693b2b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions litestar/contrib/pydantic/pydantic_init_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,11 +177,11 @@ def encoders(
encoders.update(
cls._create_pydantic_v2_encoders(
prefer_alias=prefer_alias,
exclude=exclude, # type: ignore[arg-type]
exclude=exclude,
exclude_defaults=exclude_defaults,
exclude_none=exclude_none,
exclude_unset=exclude_unset,
include=include, # type: ignore[arg-type]
include=include,
)
)
return encoders
Expand Down

0 comments on commit e693b2b

Please sign in to comment.