Skip to content

Commit 7b1b655

Browse files
committed
fix: lint issue
1 parent c628161 commit 7b1b655

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

keras/src/backend/openvino/numpy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1025,7 +1025,7 @@ def logaddexp(x1, x2):
10251025
x2 = get_ov_output(x2)
10261026

10271027
x1, x2 = _align_operand_types(x1, x2, "logaddexp()")
1028-
1028+
10291029
max_val = ov_opset.maximum(x1, x2).output(0)
10301030
abs_diff = ov_opset.abs(ov_opset.subtract(x1, x2).output(0)).output(0)
10311031
neg_abs_diff = ov_opset.negative(abs_diff).output(0)

0 commit comments

Comments
 (0)