3a531c359f
Add access for all modules to the commandline parameters (called "config" in bumblebee-status)
13 lines
277 B
Python
13 lines
277 B
Python
# pylint: disable=C0111,R0903
|
|
|
|
"""Test module
|
|
"""
|
|
|
|
import core.widget
|
|
import core.module
|
|
|
|
class Module(core.module.Module):
|
|
def __init__(self, config=None):
|
|
super().__init__(config, core.widget.Widget('test'))
|
|
|
|
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|