remove low level init for serializable

This commit is contained in:
Sydney Runkle 2025-05-13 10:40:59 -07:00
parent b2f0fbfea5
commit 31ba2844d3

View File

@ -124,10 +124,10 @@ class Serializable(BaseModel, ABC):
as part of the serialized representation. as part of the serialized representation.
""" """
# Remove default BaseModel init docstring. # # Remove default BaseModel init docstring.
def __init__(self, *args: Any, **kwargs: Any) -> None: # def __init__(self, *args: Any, **kwargs: Any) -> None:
"""""" # noqa: D419 # """""" # noqa: D419
super().__init__(*args, **kwargs) # super().__init__(*args, **kwargs)
@classmethod @classmethod
def is_lc_serializable(cls) -> bool: def is_lc_serializable(cls) -> bool: