mirror of
https://github.com/hwchase17/langchain.git
synced 2025-08-06 19:48:26 +00:00
remove low level init for serializable
This commit is contained in:
parent
b2f0fbfea5
commit
31ba2844d3
@ -124,10 +124,10 @@ class Serializable(BaseModel, ABC):
|
||||
as part of the serialized representation.
|
||||
"""
|
||||
|
||||
# Remove default BaseModel init docstring.
|
||||
def __init__(self, *args: Any, **kwargs: Any) -> None:
|
||||
"""""" # noqa: D419
|
||||
super().__init__(*args, **kwargs)
|
||||
# # Remove default BaseModel init docstring.
|
||||
# def __init__(self, *args: Any, **kwargs: Any) -> None:
|
||||
# """""" # noqa: D419
|
||||
# super().__init__(*args, **kwargs)
|
||||
|
||||
@classmethod
|
||||
def is_lc_serializable(cls) -> bool:
|
||||
|
Loading…
Reference in New Issue
Block a user