remove abstract method annotation from copy method
The method was not abstract.
This commit is contained in:
@@ -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.
|
||||||
|
|||||||
Reference in New Issue
Block a user