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-01-19 16:06:21 +01:00
|
|
|
class Module(core.module.Module):
|
2020-03-29 14:35:20 +02:00
|
|
|
def __init__(self, config):
|
2020-02-03 21:30:06 +01:00
|
|
|
super().__init__(config, core.widget.Widget('test'))
|
2020-01-19 15:36:52 +01:00
|
|
|
|
|
|
|
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|