bumblebee-status/bumblebee/modules/test.py
Tobi-wan Kenobi b6eb3ee8e6 [output/i3bar] Add flush method
flush() terminates a single iteration of widget drawing.

see #23
2016-12-04 16:14:43 +01:00

14 lines
288 B
Python

# pylint: disable=C0111,R0903
"""Test module"""
import bumblebee.engine
class Module(bumblebee.engine.Module):
def __init__(self, engine):
super(Module, self).__init__(engine)
def widgets(self):
return []
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4