bumblebee-status/core/module.py
Tobias Witek 8622673114 [core] Re-enable preliminary module loading (stubbed)
Add logic for parsing commandline options, and a preliminary stub for
loading modules.

Note: The idea is that core.module.load() will return a valid, but
empty, module that displays an error, if the module cannot be loaded
2020-01-19 15:36:52 +01:00

9 lines
146 B
Python

def load(module_name):
pass
class Module(object):
def update(self):
pass
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4