From 352ff90cd451a523baaa032292c64be9accf9122 Mon Sep 17 00:00:00 2001 From: Sven Augustin Date: Wed, 15 Jul 2020 16:19:23 +0200 Subject: [PATCH] base GenericAdjustable on Adjustable instead of BaseAdjustable --- slic/core/adjustable/genericadjustable.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/slic/core/adjustable/genericadjustable.py b/slic/core/adjustable/genericadjustable.py index b37647c7..aeae4d16 100644 --- a/slic/core/adjustable/genericadjustable.py +++ b/slic/core/adjustable/genericadjustable.py @@ -1,9 +1,9 @@ from time import sleep -from .baseadjustable import BaseAdjustable +from .adjustable import Adjustable -class GenericAdjustable(BaseAdjustable): +class GenericAdjustable(Adjustable): def __init__(self, set, get, wait=None): self.set = set