remove abstract method annotation from copy method

The method was not abstract.
This commit is contained in:
2022-08-25 19:13:59 +02:00
parent fc0922c661
commit 7732d95626

View File

@@ -1,11 +1,7 @@
from abc import abstractmethod
class PluginBase(): class PluginBase():
def __init__(self): def __init__(self):
pass pass
@abstractmethod
def copy(self): def copy(self):
""" """
Subclasses that use state must implement this method and return a new instance of themselves. Subclasses that use state must implement this method and return a new instance of themselves.