7dbeb1f2cf
This is the result of running: grep -RlI LBRY . | xargs sed -i 's/LBRY\([A-Z]\)/\1/g'
13 lines
No EOL
239 B
Python
13 lines
No EOL
239 B
Python
from yapsy.IPlugin import IPlugin
|
|
|
|
|
|
class Plugin(IPlugin):
|
|
|
|
def __init__(self):
|
|
IPlugin.__init__(self)
|
|
|
|
def setup(self, lbry_console):
|
|
raise NotImplementedError
|
|
|
|
def stop(self):
|
|
raise NotImplementedError |