@@ -134,7 +134,7 @@ def __array__(self, dtype=None, /, *, copy=None):
134
134
:class:`dpnp.ndarray` instance into NumPy array with data type `object`
135
135
and every element being zero-dimensional :class:`dpnp.ndarray`.
136
136
137
- """
137
+ """ # noqa: D403
138
138
139
139
raise TypeError (
140
140
"Implicit conversion to a NumPy array is not allowed. "
@@ -572,7 +572,7 @@ def __sycl_usm_array_interface__(self):
572
572
"""
573
573
Give ``__sycl_usm_array_interface__`` dictionary describing the array.
574
574
575
- """
575
+ """ # noqa: D200
576
576
return self ._array_obj .__sycl_usm_array_interface__
577
577
578
578
def __truediv__ (self , other ):
@@ -1074,7 +1074,7 @@ def dtype(self):
1074
1074
"""
1075
1075
Returns NumPy's dtype corresponding to the type of the array elements.
1076
1076
1077
- """
1077
+ """ # noqa: D200
1078
1078
1079
1079
return self ._array_obj .dtype
1080
1080
@@ -1123,7 +1123,7 @@ def flat(self):
1123
1123
"""
1124
1124
Return a flat iterator, or set a flattened version of self to value.
1125
1125
1126
- """
1126
+ """ # noqa: D200
1127
1127
1128
1128
return dpnp .flatiter (self )
1129
1129
@@ -1884,7 +1884,7 @@ def sycl_context(self):
1884
1884
"""
1885
1885
Return :class:`dpctl.SyclContext` object to which USM data is bound.
1886
1886
1887
- """
1887
+ """ # noqa: D200
1888
1888
return self ._array_obj .sycl_context
1889
1889
1890
1890
@property
@@ -1901,7 +1901,7 @@ def sycl_queue(self):
1901
1901
"""
1902
1902
Return :class:`dpctl.SyclQueue` object associated with USM data.
1903
1903
1904
- """
1904
+ """ # noqa: D200
1905
1905
return self ._array_obj .sycl_queue
1906
1906
1907
1907
@property
0 commit comments