From d13b0844cbc68c66b0d5f1ced88d4fe5f9ba1de4 Mon Sep 17 00:00:00 2001 From: paul-loedige Date: Fri, 20 Jan 2023 15:46:13 +0900 Subject: [PATCH] fixed small bug --- indication_driver.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indication_driver.py b/indication_driver.py index e2c78d8..11f8b95 100644 --- a/indication_driver.py +++ b/indication_driver.py @@ -63,4 +63,4 @@ class IndicationDriver: self._indication_loop = Thread(target = _indication_loop, args = (self, location, )) self._indication_loop.start() - sleep(.1) \ No newline at end of file + time.sleep(.1) \ No newline at end of file