base GenericAdjustable on Adjustable instead of BaseAdjustable

This commit is contained in:
2020-07-15 16:19:23 +02:00
parent 56497fe723
commit 352ff90cd4
+2 -2
View File
@@ -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