mirror of
https://github.com/LukeSmithxyz/voidrice.git
synced 2026-03-20 01:37:45 +01:00
17 lines
355 B
Python
17 lines
355 B
Python
# pylint: disable=C0111,R0903
|
|
|
|
"""Test module
|
|
"""
|
|
|
|
import bumblebee.engine
|
|
|
|
ALIASES = [ "test-alias" ]
|
|
|
|
class Module(bumblebee.engine.Module):
|
|
def __init__(self, engine, config):
|
|
super(Module, self).__init__(engine, config,
|
|
bumblebee.output.Widget(full_text="test")
|
|
)
|
|
|
|
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|