From a4905a862efaccddcd88ee2857d45a5c5a8b64f2 Mon Sep 17 00:00:00 2001 From: Konstantin Lampalzer Date: Fri, 15 Jan 2021 18:28:50 +0100 Subject: [PATCH] Fix imports --- compLIB/Motor.py | 1 - compLIB/__init__.py | 2 ++ 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/compLIB/Motor.py b/compLIB/Motor.py index ecd1d83..af81479 100644 --- a/compLIB/Motor.py +++ b/compLIB/Motor.py @@ -1,6 +1,5 @@ from compLIB import * - class Motor(object): @staticmethod diff --git a/compLIB/__init__.py b/compLIB/__init__.py index 9243134..747f4c9 100644 --- a/compLIB/__init__.py +++ b/compLIB/__init__.py @@ -1,3 +1,5 @@ +from PCA9685 import PCA9685 + __version__ = "0.0.1" pwm = PCA9685(0x40, debug=True)