320827d577
OK - so I have to admit I *hate* the fact that PIP seems to require a subdirectory named like the library. But since the PIP package is something really nifty to have (thanks to @tony again!!!), I updated the codebase to hopefully conform with what PIP expects. Testruns so far look promising...
9 lines
198 B
Python
9 lines
198 B
Python
from .pulseaudio import Module
|
|
|
|
|
|
class Module(Module):
|
|
def __init__(self, config, theme):
|
|
super().__init__(config, theme, "sink")
|
|
|
|
|
|
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|