(self, *args, **kwargs)
| 97 | """Wrapper class around the power grid model to expose extended features.""" |
| 98 | |
| 99 | def __init__(self, *args, **kwargs): |
| 100 | super().__init__(*args, **kwargs) |
| 101 | |
| 102 | def calculate_power_flow_with_ext(self, *args, **kwargs): |
| 103 | """calculate_power_flow with extended features.""" |
nothing calls this directly
no outgoing calls
no test coverage detected