fixed argument order

This commit is contained in:
2021-05-15 18:50:22 +02:00
parent a3b4c01347
commit a1cf4234fb
+1 -1
View File
@@ -5,7 +5,7 @@ from .condition import Condition
class ValueCondition(Condition):
def __init__(self, get_value, *args, check_time, **kwargs):
def __init__(self, get_value, check_time, *args, **kwargs):
super().__init__(*args, **kwargs)
self.get_value = get_value
self.check_time = check_time