Skip to content

Commit 7993474

Browse files
committed
disable pylint for isin unused assume_unique argument
1 parent dc3e13a commit 7993474

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

dpnp/dpnp_iface_logic.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1166,7 +1166,12 @@ def isfortran(a):
11661166
return a.flags.fnc
11671167

11681168

1169-
def isin(element, test_elements, assume_unique=False, invert=False):
1169+
def isin(
1170+
element,
1171+
test_elements,
1172+
assume_unique=False, # pylint: disable=unused-argument
1173+
invert=False,
1174+
):
11701175
"""
11711176
Calculates ``element in test_elements``, broadcasting over `element` only.
11721177
Returns a boolean array of the same shape as `element` that is ``True``

0 commit comments

Comments
 (0)