From 3b50ebbf8605d3f8c69e0c25ed8236d56e436c9a Mon Sep 17 00:00:00 2001 From: Tristan Smith Date: Thu, 21 Mar 2024 21:22:54 -0400 Subject: [PATCH] had a duplicate help call --- server.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/server.py b/server.py index 2bdb546..c942df0 100644 --- a/server.py +++ b/server.py @@ -59,7 +59,4 @@ if args.fan is not None: if args.dynamic == 'on': enable_dynamic_fan_control() elif args.dynamic == 'off': - disable_dynamic_fan_control() - -if not (args.power or args.fan or args.dynamic): - parser.print_help() \ No newline at end of file + disable_dynamic_fan_control() \ No newline at end of file