Commit 34c3014 1 parent c0cdf8c commit 34c3014 Copy full SHA for 34c3014
File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -672,7 +672,7 @@ def __init__(
672
672
self .list_fasttrack = [] # provided so that there is a default even before simulation is run
673
673
674
674
# Store the argument provided for service_availability
675
- self .arg_service_availabily = service_availability
675
+ self .arg_service_availability = service_availability
676
676
self .service_availability = ['*' ] # provided so that there is a default even before simulation is run
677
677
678
678
# Check that the capabilities coefficient is correct
@@ -1157,10 +1157,10 @@ def get_service_availability(self) -> List[str]:
1157
1157
"""Returns service availability. (Should be equal to what is specified by the parameter, but overwrite with what
1158
1158
was provided in argument if an argument was specified -- provided for backward compatibility/debugging.)"""
1159
1159
1160
- if self .arg_service_availabily is None :
1160
+ if self .arg_service_availability is None :
1161
1161
service_availability = self .parameters ['Service_Availability' ]
1162
1162
else :
1163
- service_availability = self .arg_service_availabily
1163
+ service_availability = self .arg_service_availability
1164
1164
1165
1165
assert isinstance (service_availability , list )
1166
1166
You can’t perform that action at this time.
0 commit comments