From 8b4399621c563c19ea41c23878b17887b45c54ff Mon Sep 17 00:00:00 2001 From: Eneko Nieto Date: Mon, 13 Apr 2026 13:27:36 +0200 Subject: [PATCH] fix: False instead of false (I hate python) --- call_manager.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/call_manager.py b/call_manager.py index cd932ad..1a33dc8 100644 --- a/call_manager.py +++ b/call_manager.py @@ -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):