From 1504edad782f9459dc66ddd1dc1dafb0a70d612b Mon Sep 17 00:00:00 2001 From: Siddhesh Agarwal Date: Thu, 31 Oct 2024 20:50:17 +0530 Subject: [PATCH] removed ABC as parent class --- simplemind/models.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/simplemind/models.py b/simplemind/models.py index 731c1a3..e548435 100644 --- a/simplemind/models.py +++ b/simplemind/models.py @@ -1,4 +1,3 @@ -from abc import ABC, abstractmethod from types import TracebackType import uuid from datetime import datetime @@ -23,7 +22,7 @@ class SMBaseModel(BaseModel): return str(self) -class BasePlugin(SMBaseModel, ABC): +class BasePlugin(SMBaseModel): """The base conversation plugin class.""" # Plugin metadata.