Skip to content

Commit a35db72

Browse files
Disable ruff/refurb rule FURB118
FURB118 Use `operator.add` instead of defining a function
1 parent 6798eab commit a35db72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

niworkflows/engine/tests/test_plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from ..plugin import MultiProcPlugin
99

1010

11-
def add(x, y):
11+
def add(x, y): # noqa: FURB118 # the Function interface does not support builtin functions
1212
return x + y
1313

1414

0 commit comments

Comments
 (0)