@@ -522,7 +522,8 @@ def numpy_cupy_array_almost_equal_nulp(
522522 (except the type of array module) even if ``xp`` is ``numpy`` or ``cupy``.
523523
524524 .. seealso:: :func:`cupy.testing.assert_array_almost_equal_nulp`
525- """ # NOQA
525+
526+ """
526527
527528 def check_func (x , y ):
528529 array .assert_array_almost_equal_nulp (x , y , nulp )
@@ -570,7 +571,7 @@ def numpy_cupy_array_max_ulp(
570571
571572 .. seealso:: :func:`cupy.testing.assert_array_max_ulp`
572573
573- """ # NOQA
574+ """
574575
575576 def check_func (x , y ):
576577 array .assert_array_max_ulp (x , y , maxulp , dtype )
@@ -659,7 +660,8 @@ def numpy_cupy_array_list_equal(
659660 (except the type of array module) even if ``xp`` is ``numpy`` or ``cupy``.
660661
661662 .. seealso:: :func:`cupy.testing.assert_array_list_equal`
662- """ # NOQA
663+
664+ """
663665
664666 def check_func (x , y ):
665667 array .assert_array_equal (x , y , err_msg , verbose )
@@ -1011,7 +1013,9 @@ def for_int_dtypes(name="dtype", no_bool=False):
10111013
10121014 .. seealso:: :func:`cupy.testing.for_dtypes`,
10131015 :func:`cupy.testing.for_all_dtypes`
1014- """ # NOQA
1016+
1017+ """
1018+
10151019 if no_bool :
10161020 return for_dtypes (_int_dtypes , name = name )
10171021 else :
@@ -1139,7 +1143,9 @@ def for_signed_dtypes_combination(names=("dtype",), full=None):
11391143 (see description in :func:`cupy.testing.for_dtypes_combination`).
11401144
11411145 .. seealso:: :func:`cupy.testing.for_dtypes_combination`
1142- """ # NOQA
1146+
1147+ """
1148+
11431149 return for_dtypes_combination (_signed_dtypes , names = names , full = full )
11441150
11451151
@@ -1154,7 +1160,9 @@ def for_unsigned_dtypes_combination(names=("dtype",), full=None):
11541160 (see description in :func:`cupy.testing.for_dtypes_combination`).
11551161
11561162 .. seealso:: :func:`cupy.testing.for_dtypes_combination`
1157- """ # NOQA
1163+
1164+ """
1165+
11581166 return for_dtypes_combination (_unsigned_dtypes , names = names , full = full )
11591167
11601168
@@ -1171,7 +1179,9 @@ def for_int_dtypes_combination(names=("dtype",), no_bool=False, full=None):
11711179 (see description in :func:`cupy.testing.for_dtypes_combination`).
11721180
11731181 .. seealso:: :func:`cupy.testing.for_dtypes_combination`
1174- """ # NOQA
1182+
1183+ """
1184+
11751185 if no_bool :
11761186 types = _int_dtypes
11771187 else :
0 commit comments