2020-01-19 15:36:52 +01:00
|
|
|
# pylint: disable=C0111,R0903
|
|
|
|
|
|
|
|
"""Test module
|
|
|
|
"""
|
|
|
|
|
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):
|
|
|
|
def __init__(self):
|
|
|
|
pass
|
2020-01-19 15:36:52 +01:00
|
|
|
|
|
|
|
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|