2016-12-04 11:09:10 +01:00
|
|
|
# pylint: disable=C0111,R0903
|
|
|
|
|
|
|
|
"""Test module"""
|
|
|
|
|
|
|
|
import bumblebee.engine
|
|
|
|
|
|
|
|
class Module(bumblebee.engine.Module):
|
2016-12-09 08:23:53 +01:00
|
|
|
def __init__(self, engine, config):
|
|
|
|
super(Module, self).__init__(engine, config,
|
2016-12-08 08:44:54 +01:00
|
|
|
bumblebee.output.Widget(full_text="test")
|
|
|
|
)
|
2016-12-04 11:09:10 +01:00
|
|
|
|
2016-12-08 08:44:54 +01:00
|
|
|
def update(self, widgets):
|
|
|
|
pass
|
2016-12-04 16:14:43 +01:00
|
|
|
|
2016-12-04 11:09:10 +01:00
|
|
|
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|