Skip to content
Snippets Groups Projects
Commit 732012ca authored by sguazt's avatar sguazt
Browse files

Added 'from_conf()' method in the base measures store class as a abstract...

Added 'from_conf()' method in the base measures store class as a abstract class method to make sure that measure stores subclasses implement it
parent b31fd522
No related branches found
No related tags found
No related merge requests found
......@@ -55,6 +55,11 @@ class MeasuresStore(ABC):
_MEASURE_GROUP_SEP = ':'
#_MEASURE_GROUP_SEP_B = b'-'
@classmethod
@abstractmethod
def from_conf(cls, conf):
pass
def __init__(self):
pass
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment