Skip to content

Commit

Permalink
chore: address review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Goldziher committed Jul 27, 2023
1 parent 3624fa6 commit e4c6cc7
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions litestar/_signature/types.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from __future__ import annotations

from typing import Any, Callable, ClassVar
from typing import Any

from msgspec import ValidationError

Expand All @@ -9,7 +9,3 @@ class ExtendedMsgSpecValidationError(ValidationError):
def __init__(self, errors: list[dict[str, Any]]) -> None:
self.errors = errors
super().__init__(errors)


class SerializationWrapper:
_decoder: ClassVar[Callable[[type, Any], Any]]

0 comments on commit e4c6cc7

Please sign in to comment.