From 6854b9d7cba27c0fa34b6a76419dbdbe53cc94a7 Mon Sep 17 00:00:00 2001 From: Konstantin Lampalzer Date: Fri, 15 Jan 2021 23:58:43 +0100 Subject: [PATCH] Fix motor atoff --- compLIB/Motor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compLIB/Motor.py b/compLIB/Motor.py index dd9177d..ea68870 100644 --- a/compLIB/Motor.py +++ b/compLIB/Motor.py @@ -48,4 +48,4 @@ class Motor(object): Motor.power(i, 0) -atexit.register(Motor.all_off()) +atexit.register(Motor.all_off)