@@ -129,7 +129,7 @@ def __array__(self, dtype=None, /, *, copy=None):
129
129
:class:`dpnp.ndarray` instance into NumPy array with data type `object`
130
130
and every element being zero-dimensional :class:`dpnp.ndarray`.
131
131
132
- """
132
+ """ # noqa: D403
133
133
134
134
raise TypeError (
135
135
"Implicit conversion to a NumPy array is not allowed. "
@@ -567,7 +567,7 @@ def __sycl_usm_array_interface__(self):
567
567
"""
568
568
Give ``__sycl_usm_array_interface__`` dictionary describing the array.
569
569
570
- """
570
+ """ # noqa: D200
571
571
return self ._array_obj .__sycl_usm_array_interface__
572
572
573
573
def __truediv__ (self , other ):
@@ -1061,7 +1061,7 @@ def dtype(self):
1061
1061
"""
1062
1062
Returns NumPy's dtype corresponding to the type of the array elements.
1063
1063
1064
- """
1064
+ """ # noqa: D200
1065
1065
1066
1066
return self ._array_obj .dtype
1067
1067
@@ -1110,7 +1110,7 @@ def flat(self):
1110
1110
"""
1111
1111
Return a flat iterator, or set a flattened version of self to value.
1112
1112
1113
- """
1113
+ """ # noqa: D200
1114
1114
1115
1115
return dpnp .flatiter (self )
1116
1116
@@ -1871,7 +1871,7 @@ def sycl_context(self):
1871
1871
"""
1872
1872
Return :class:`dpctl.SyclContext` object to which USM data is bound.
1873
1873
1874
- """
1874
+ """ # noqa: D200
1875
1875
return self ._array_obj .sycl_context
1876
1876
1877
1877
@property
@@ -1888,7 +1888,7 @@ def sycl_queue(self):
1888
1888
"""
1889
1889
Return :class:`dpctl.SyclQueue` object associated with USM data.
1890
1890
1891
- """
1891
+ """ # noqa: D200
1892
1892
return self ._array_obj .sycl_queue
1893
1893
1894
1894
@property
0 commit comments