[modules/kernel] Add documentation and vim hints

This commit is contained in:
Tobi-wan Kenobi 2017-03-03 19:13:30 +01:00
parent 64386098b6
commit 955f123b88

View file

@ -1,3 +1,7 @@
# pylint: disable=C0111,R0903
"""Shows Linux kernel version information"""
import bumblebee.input import bumblebee.input
import bumblebee.output import bumblebee.output
import bumblebee.engine import bumblebee.engine
@ -11,3 +15,5 @@ class Module(bumblebee.engine.Module):
def output(self, widget): def output(self, widget):
return self._release_name return self._release_name
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4