fix: False instead of false (I hate python)

This commit is contained in:
2026-04-13 13:27:36 +02:00
parent 1dde89169e
commit 8b4399621c

View File

@@ -14,10 +14,10 @@ def exec_mumble(deaf: bool):
subprocess.Popen(['mumble', 'rpc', 'deaf' if deaf else 'undeaf'])
def deaf_mumble():
exec_mumble(true)
exec_mumble(True)
def undeaf_mumble():
exec_mumble(false)
exec_mumble(False)
class CallManager:
def __init__(self, config):