From cc79b8f2b033f2210a8a63d9643ca067fa29e22c Mon Sep 17 00:00:00 2001 From: Konstantin Lampalzer Date: Fri, 15 Jan 2021 18:31:59 +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 af81479..ecd1d83 100644 --- a/compLIB/Motor.py +++ b/compLIB/Motor.py @@ -1,5 +1,6 @@ from compLIB import * + class Motor(object): @staticmethod diff --git a/compLIB/__init__.py b/compLIB/__init__.py index 747f4c9..405a9c4 100644 --- a/compLIB/__init__.py +++ b/compLIB/__init__.py @@ -1,4 +1,4 @@ -from PCA9685 import PCA9685 +from compLIB.PCA9685 import PCA9685 __version__ = "0.0.1"