Skip to content

Commit f82cfe2

Browse files
committed
apply automatic code formatting from ruff
1 parent 49b34e3 commit f82cfe2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

nncf/tensor/functions/tf_linalg.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -137,4 +137,4 @@ def _(a: tf.Tensor, full_matrices: Optional[bool] = True) -> tf.Tensor:
137137
with tf.device(a.device):
138138
s, u, v = tf.linalg.svd(a, full_matrices=full_matrices)
139139

140-
return u, s, tf.transpose(v, conjugate=True)
140+
return u, s, tf.transpose(v, conjugate=True)

nncf/tensor/functions/tf_numeric.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -547,4 +547,4 @@ def tensor(
547547
device = convert_to_tf_device(device)
548548
dtype = convert_to_tf_dtype(dtype)
549549
with tf.device(device):
550-
return tf.constant(data, dtype=dtype)
550+
return tf.constant(data, dtype=dtype)

0 commit comments

Comments
 (0)