From 569ac7bbb6089cb307d62fe1885ca4c9f28b868b Mon Sep 17 00:00:00 2001 From: Hin Tse <5867507+hintse@users.noreply.github.com> Date: Sun, 4 Jan 2026 21:16:25 -0500 Subject: [PATCH] Fix docstring for BaseModel. Signed-off-by: Hin Tse <5867507+hintse@users.noreply.github.com> --- ccflow/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ccflow/base.py b/ccflow/base.py index 18e2eac..96b7138 100644 --- a/ccflow/base.py +++ b/ccflow/base.py @@ -149,7 +149,7 @@ def __new__(self, name: str, bases: Tuple[type], namespaces: Dict[str, Any], **k class BaseModel(PydanticBaseModel, _RegistryMixin, metaclass=_SerializeAsAnyMeta): - """BaseModel is a base class for all pydantic models within the cubist flow framework. + """BaseModel is a base class for all pydantic models within the ccflow framework. This gives us a way to add functionality to the framework, including - Type of object is part of serialization/deserialization