mirror of
https://github.com/hwchase17/langchain.git
synced 2025-08-07 12:06:43 +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.
|
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:
|
||||||
|
Loading…
Reference in New Issue
Block a user