Skip to content

Commit 82c657e

Browse files
Fix pre-commit remark
1 parent 28b2a52 commit 82c657e

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

dpnp/backend/kernels/elementwise_functions/interpolate.hpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,7 @@ sycl::event interpolate_impl(sycl::queue &q,
5454
if (IsNan<TValue>::isnan(res)) {
5555
res = slope * (x_val - xp[x_idx + 1]) + fp[x_idx + 1];
5656
if (IsNan<TValue>::isnan(res) &&
57-
(fp[x_idx] == fp[x_idx + 1]))
58-
{
57+
(fp[x_idx] == fp[x_idx + 1])) {
5958
res = fp[x_idx];
6059
}
6160
}

0 commit comments

Comments
 (0)