From 7732d956263336f28c442d0425e73842b8e2f919 Mon Sep 17 00:00:00 2001 From: Andreas Huber Date: Thu, 25 Aug 2022 19:13:59 +0200 Subject: [PATCH] remove abstract method annotation from copy method The method was not abstract. --- src/pluginbase.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/pluginbase.py b/src/pluginbase.py index 7754009..d2640e7 100644 --- a/src/pluginbase.py +++ b/src/pluginbase.py @@ -1,11 +1,7 @@ -from abc import abstractmethod - - class PluginBase(): def __init__(self): pass - @abstractmethod def copy(self): """ Subclasses that use state must implement this method and return a new instance of themselves.