Skip to content

Commit 2d28f89

Browse files
committed
disable pylint for isin unused assume_unique argument
1 parent e3856eb commit 2d28f89

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dpnp/dpnp_iface_logic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1197,7 +1197,7 @@ def isfortran(a):
11971197
return a.flags.fnc
11981198

11991199

1200-
def isin(element, test_elements, assume_unique=False, invert=False):
1200+
def isin(element, test_elements, assume_unique=False, invert=False): # pylint: disable=unused-argument
12011201
"""
12021202
Calculates ``element in test_elements``, broadcasting over `element` only.
12031203
Returns a boolean array of the same shape as `element` that is ``True``

0 commit comments

Comments
 (0)