Skip to content

Commit 7d29652

Browse files
committed
disable pylint for isin unused assume_unique argument
1 parent e3856eb commit 7d29652

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
@@ -1197,7 +1197,12 @@ def isfortran(a):
11971197
return a.flags.fnc
11981198

11991199

1200-
def isin(element, test_elements, assume_unique=False, invert=False):
1200+
def isin(
1201+
element,
1202+
test_elements,
1203+
assume_unique=False, # pylint: disable=unused-argument
1204+
invert=False,
1205+
):
12011206
"""
12021207
Calculates ``element in test_elements``, broadcasting over `element` only.
12031208
Returns a boolean array of the same shape as `element` that is ``True``

0 commit comments

Comments
 (0)