cleanup
This commit is contained in:
@@ -1,14 +0,0 @@
|
||||
from raven.pluginbase import PluginBase
|
||||
|
||||
|
||||
class FilterPlugin(PluginBase):
|
||||
def __init__(self):
|
||||
super(FilterPlugin, self).__init__()
|
||||
print("init FilterPlugin")
|
||||
|
||||
def say_hello(self, arg: str):
|
||||
print("FilterPlugin says hello %s" % arg)
|
||||
|
||||
|
||||
def init():
|
||||
print("initializing filter plugin")
|
||||
@@ -1,10 +0,0 @@
|
||||
from raven.pluginbase import PluginBase
|
||||
|
||||
|
||||
class LogFileViewerPlugin(PluginBase):
|
||||
def __init__(self):
|
||||
super(LogFileViewerPlugin, self).__init__()
|
||||
print("init LogFileViewerPlugin")
|
||||
|
||||
def say_hello(self, *args):
|
||||
print("LogFileViewerPlugin says hello")
|
||||
Reference in New Issue
Block a user