Browse Source

Fixed a naming inconsistency in the ActivePeriod object

Signed-off-by: Stan Janssen <stan.janssen@elaad.nl>
Stan Janssen 3 years ago
parent
commit
bad87bc52e
1 changed files with 3 additions and 3 deletions
  1. 3 3
      openleadr/objects.py

+ 3 - 3
openleadr/objects.py

@@ -117,9 +117,9 @@ class ActivePeriod:
     dtstart: datetime
     duration: timedelta
     tolerance: dict = None
-    notification: dict = None
-    ramp_up: dict = None
-    recovery: dict = None
+    notification_period: dict = None
+    ramp_up_period: dict = None
+    recovery_period: dict = None
 
 
 @dataclass