2016-10-31 15:23:59 +01:00
|
|
|
import bumblebee.module
|
|
|
|
import bumblebee.util
|
|
|
|
|
2016-10-31 16:08:03 +01:00
|
|
|
def usage():
|
|
|
|
return "spacer"
|
|
|
|
|
|
|
|
def notes():
|
|
|
|
return "none"
|
|
|
|
|
|
|
|
def description():
|
|
|
|
return "Draws an empty field."
|
|
|
|
|
2016-10-31 15:23:59 +01:00
|
|
|
class Module(bumblebee.module.Module):
|
2016-11-01 08:09:10 +01:00
|
|
|
def __init__(self, output, args):
|
2016-10-31 15:23:59 +01:00
|
|
|
super(Module, self).__init__(args)
|
|
|
|
|
|
|
|
def data(self):
|
|
|
|
return ""
|
|
|
|
|
|
|
|
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|