Files
krowlog/src/pluginbase.py
2022-08-25 19:13:59 +02:00

11 lines
241 B
Python

class PluginBase():
def __init__(self):
pass
def copy(self):
"""
Subclasses that use state must implement this method and return a new instance of themselves.
:return:
"""
return self