fix: False instead of false (I hate python)
This commit is contained in:
@@ -14,10 +14,10 @@ def exec_mumble(deaf: bool):
|
|||||||
subprocess.Popen(['mumble', 'rpc', 'deaf' if deaf else 'undeaf'])
|
subprocess.Popen(['mumble', 'rpc', 'deaf' if deaf else 'undeaf'])
|
||||||
|
|
||||||
def deaf_mumble():
|
def deaf_mumble():
|
||||||
exec_mumble(true)
|
exec_mumble(True)
|
||||||
|
|
||||||
def undeaf_mumble():
|
def undeaf_mumble():
|
||||||
exec_mumble(false)
|
exec_mumble(False)
|
||||||
|
|
||||||
class CallManager:
|
class CallManager:
|
||||||
def __init__(self, config):
|
def __init__(self, config):
|
||||||
|
|||||||
Reference in New Issue
Block a user