Update settings.py

This commit is contained in:
Nestpebble
2024-09-16 01:20:11 +01:00
committed by GitHub
parent bf34661e42
commit ef9231f51f
+2 -2
View File
@@ -133,8 +133,8 @@ try:
signalCooldown = config['radioMon'].getint('signalCooldown', 5) # default 1 second
signalCycleLimit = config['radioMon'].getint('signalCycleLimit', 5) # default 5 cycles, used with SIGNAL_COOLDOWN
responseDelay = config['messagingSettings'].getint('responseDelay', 0.7) # default 0.7
splitDelay = config['messagingSettings'].getint('splitDelay', 0) # default 0
responseDelay = config['messagingSettings'].getfloat('responseDelay', 0.7) # default 0.7
splitDelay = config['messagingSettings'].getfloat('splitDelay', 0) # default 0
MESSAGE_CHUNK_SIZE = config['messagingSettings'].getint('MESSAGE_CHUNK_SIZE', 160) # default 160
except KeyError as e: