From e75ef3e44d81e18578a2c964a3b230398baad08d Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Wed, 2 Oct 2024 14:51:46 -0700 Subject: [PATCH] Update simulator.py --- etc/simulator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/simulator.py b/etc/simulator.py index 74a42af..c05ba5d 100644 --- a/etc/simulator.py +++ b/etc/simulator.py @@ -51,7 +51,7 @@ if __name__ == '__main__': # represents the bot's main loop packet = input(f"CLIENT {nodeID} INPUT: " ) # Emulate the client input if packet != "": #try: - projectResponse = globals()[projectName](nodeID, packet) # Call the project handler under test + projectResponse = globals()[projectName](nodeID, deviceID=nodeInt, message=packet) # Call the project handler under test # except Exception as e: # logger.error(f"System: Handler: {e}") # projectResponse = "Error in handler"