Skip to content

Commit a4b5b1f

Browse files
Fixed black
1 parent 51fc1e6 commit a4b5b1f

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

dpctl/tests/test_sycl_usm.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,17 +28,19 @@
2828
import dpctl._memory
2929
import numpy as np
3030

31+
3132
class Dummy(MemoryUSMShared):
3233
"""
3334
Class that exposes `__sycl_usm_array_interface__` with
3435
SYCL context for sycl object, instead of Sycl queue.
3536
"""
37+
3638
@property
3739
def __sycl_usm_array_interface(self):
3840
iface = super().__sycl_usm_array_interface__
39-
iface['syclob'] = iface['syclobj'].get_sycl_context()
41+
iface["syclob"] = iface["syclobj"].get_sycl_context()
4042
return iface
41-
43+
4244

4345
class TestMemory(unittest.TestCase):
4446
@unittest.skipUnless(

0 commit comments

Comments
 (0)