added registry functionality to BaseAdjustable

This commit is contained in:
2020-07-15 16:17:07 +02:00
parent fa115981dd
commit 6cb5eaebe2
+4 -2
View File
@@ -1,7 +1,9 @@
from abc import ABC, abstractmethod
from abc import abstractmethod
from slic.utils.metaclasses import RegistryABC
class BaseAdjustable(ABC):
class BaseAdjustable(RegistryABC):
@abstractmethod
def get_current_value(self):