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