From 87016186d8a54eac7d1b549de1e11963d8d83dc9 Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Thu, 28 Nov 2024 16:53:04 -0800 Subject: [PATCH] Update system.py --- modules/system.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/system.py b/modules/system.py index 3f8ce51..47f9a75 100644 --- a/modules/system.py +++ b/modules/system.py @@ -611,9 +611,9 @@ def handleMultiPing(nodeID=0, deviceID=1): if type == 'πŸŽ™TEST': # use the type for a string of random data divided by MAXBUFFER and count for the length of the string type = ''.join(random.choice(['0', '1']) for i in range(int(maxBuffer / count))) - count = len(type + f"πŸ”‚ ") + count = len(type + "πŸ”‚ ") if count > 99: - # why? because the count likes to count + # why? because the count likes to count, and it counts the count count = count - 1 send_message(f"πŸ”‚{count} {type}", channel_number, message_id_from, deviceID, bypassChuncking=True)