2020-01-19 14:36:52 +00:00
|
|
|
# pylint: disable=C0111,R0903
|
|
|
|
|
|
|
|
"""Test module
|
|
|
|
"""
|
|
|
|
|
2020-02-01 20:37:38 +00:00
|
|
|
import core.widget
|
2020-01-19 15:06:21 +00:00
|
|
|
import core.module
|
2020-01-19 14:36:52 +00:00
|
|
|
|
2020-05-03 09:15:52 +00:00
|
|
|
|
2020-01-19 15:06:21 +00:00
|
|
|
class Module(core.module.Module):
|
2020-04-26 14:39:24 +00:00
|
|
|
def __init__(self, config, theme):
|
2020-05-03 09:15:52 +00:00
|
|
|
super().__init__(config=config, theme=theme, widgets=core.widget.Widget("test"))
|
|
|
|
|
2020-01-19 14:36:52 +00:00
|
|
|
|
|
|
|
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|