Skip to content

Commit 880428e

Browse files
committed
Mypy changes.
1 parent a7510f9 commit 880428e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/vtlengine/Operators/Conditional.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -366,10 +366,10 @@ def evaluate(
366366
]
367367
)
368368

369-
result.data.loc[condition_mask_else, columns] = (
369+
result.data.loc[condition_mask_else, columns] = ( # type: ignore[index]
370370
elseOp.value
371371
if isinstance(elseOp, Scalar)
372-
else elseOp.data.loc[condition_mask_else, columns] # type: ignore[index]
372+
else elseOp.data.loc[condition_mask_else, columns]
373373
)
374374

375375
return result

0 commit comments

Comments
 (0)