Skip to content

Commit

Permalink
Fix failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
dmontagu committed Jun 15, 2023
1 parent dfd4069 commit b11ea8f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pydantic/main.py
Expand Up @@ -5,7 +5,7 @@
import typing
import warnings
from copy import copy, deepcopy
from typing import Any, Dict
from typing import Any

import pydantic_core
import typing_extensions
Expand Down Expand Up @@ -122,7 +122,6 @@ class BaseModel(metaclass=_model_construction.ModelMetaclass):
__slots__ = '__dict__', '__pydantic_fields_set__', '__pydantic_extra__', '__pydantic_private__'
__pydantic_complete__ = False
__pydantic_root_model__: typing.ClassVar[bool] = False
__pydantic_extra__: Dict[str, Any] | None # noqa: UP006 # makes internal typing stuff crash

def __init__(__pydantic_self__, **data: Any) -> None: # type: ignore
"""Create a new model by parsing and validating input data from keyword arguments.
Expand Down

0 comments on commit b11ea8f

Please sign in to comment.