@@ -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. "
@@ -574,7 +574,7 @@ def __sycl_usm_array_interface__(self):
574
574
"""
575
575
Give ``__sycl_usm_array_interface__`` dictionary describing the array.
576
576
577
- """
577
+ """ # noqa: D200
578
578
return self ._array_obj .__sycl_usm_array_interface__
579
579
580
580
def __truediv__ (self , other ):
@@ -1076,7 +1076,7 @@ def dtype(self):
1076
1076
"""
1077
1077
Returns NumPy's dtype corresponding to the type of the array elements.
1078
1078
1079
- """
1079
+ """ # noqa: D200
1080
1080
1081
1081
return self ._array_obj .dtype
1082
1082
@@ -1125,7 +1125,7 @@ def flat(self):
1125
1125
"""
1126
1126
Return a flat iterator, or set a flattened version of self to value.
1127
1127
1128
- """
1128
+ """ # noqa: D200
1129
1129
1130
1130
return dpnp .flatiter (self )
1131
1131
@@ -1886,7 +1886,7 @@ def sycl_context(self):
1886
1886
"""
1887
1887
Return :class:`dpctl.SyclContext` object to which USM data is bound.
1888
1888
1889
- """
1889
+ """ # noqa: D200
1890
1890
return self ._array_obj .sycl_context
1891
1891
1892
1892
@property
@@ -1903,7 +1903,7 @@ def sycl_queue(self):
1903
1903
"""
1904
1904
Return :class:`dpctl.SyclQueue` object associated with USM data.
1905
1905
1906
- """
1906
+ """ # noqa: D200
1907
1907
return self ._array_obj .sycl_queue
1908
1908
1909
1909
@property
0 commit comments