Skip to content

Commit 717e60c

Browse files
committed
Formatting of test and imports corrected
1 parent 7e1b918 commit 717e60c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

dpctl/tensor/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@
2727
asarray,
2828
empty,
2929
empty_like,
30+
eye,
3031
full,
3132
full_like,
32-
eye,
3333
linspace,
3434
ones,
3535
ones_like,

dpctl/tests/test_usm_ndarray_ctor.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1301,9 +1301,9 @@ def test_eye(shapes, k, orders):
13011301
except dpctl.SyclQueueCreationError:
13021302
pytest.skip("Queue could not be created")
13031303

1304-
shape=shapes
1305-
k=k
1306-
order=orders
1304+
shape = shapes
1305+
k = k
1306+
order = orders
13071307

13081308
Xnp = np.eye(*shape, k=k, order=order)
13091309
X = dpt.eye(*shape, k=k, order=order, sycl_queue=q)

0 commit comments

Comments
 (0)