We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4786205 commit 9a6227bCopy full SHA for 9a6227b
src/power_grid_model/validation/_validation.py
@@ -273,8 +273,10 @@ def _process_power_sigma_and_p_q_sigma(
273
mask = np.logical_and(np.isnan(power_sigma), np.any(np.logical_not(np.isnan(q_sigma)), axis=asym_axes))
274
power_sigma[mask] = np.nansum(q_sigma[mask], axis=asym_axes)
275
276
+
277
# pylint: disable=too-many-statements
278
279
280
def validate_required_values(
281
data: SingleDataset, calculation_type: CalculationType | None = None, symmetric: bool = True
282
) -> list[MissingValueError]:
0 commit comments