Skip to content

Commit ac455f3

Browse files
committed
🎨 remove unused class
1 parent 8ad8ebc commit ac455f3

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

aries_cloudcontroller/util/pydantic_converter.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
from pydantic.json import ENCODERS_BY_TYPE
1212
from uplink.converters.interfaces import Converter
1313
from uplink.converters.pydantic_ import PydanticConverter as InitialConverter
14-
from uplink.converters.pydantic_ import _PydanticResponseBody as _InitialResponseBody
14+
from uplink.converters.pydantic_ import \
15+
_PydanticResponseBody as _InitialResponseBody
1516
from uplink.utils import is_subclass
1617

1718

@@ -148,7 +149,3 @@ def create_request_body_converter(self, type_, *args, **kwargs):
148149

149150
def create_response_body_converter(self, type_, *args, **kwargs):
150151
return self._make_converter(_PydanticResponseBody, type_)
151-
152-
153-
class EmptyModel(BaseModel):
154-
"""Default model for schemas without defined properties."""

0 commit comments

Comments
 (0)