[modules/all] Update constructore to include theme

This commit is contained in:
tobi-wan-kenobi 2020-04-26 16:39:24 +02:00
parent 1f94eab927
commit f2d411276d
78 changed files with 158 additions and 158 deletions

View file

@ -1,7 +1,7 @@
from .__pulseaudio import Module
class Module(Module):
def __init__(self, config):
super().__init__(config, 'source')
def __init__(self, config, theme):
super().__init__(config, theme, 'source')
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4