turn off repr (#6078)

searx_updates
Harrison Chase 11 months ago committed by GitHub
parent a9b3b2e327
commit cde1e8739a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -55,7 +55,7 @@ class Serializable(BaseModel, ABC):
"""
return {}
lc_kwargs: Dict[str, Any] = Field(default_factory=dict, exclude=True)
lc_kwargs: Dict[str, Any] = Field(default_factory=dict, exclude=True, repr=False)
def __init__(self, **kwargs: Any) -> None:
super().__init__(**kwargs)

Loading…
Cancel
Save