From e4c6cc7e6b67d775958c623e4c4a0fe08a2a0122 Mon Sep 17 00:00:00 2001 From: Na'aman Hirschfeld Date: Thu, 27 Jul 2023 20:26:48 +0200 Subject: [PATCH] chore: address review comments --- litestar/_signature/types.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/litestar/_signature/types.py b/litestar/_signature/types.py index 812ccd7bd5..ac174cc043 100644 --- a/litestar/_signature/types.py +++ b/litestar/_signature/types.py @@ -1,6 +1,6 @@ from __future__ import annotations -from typing import Any, Callable, ClassVar +from typing import Any from msgspec import ValidationError @@ -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]]