Skip to content

Commit 5483d09

Browse files
STY: Apply ruff rule UF023
UF023 `__slots__` is not sorted
1 parent 5e3728e commit 5483d09

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nipype/interfaces/base/support.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
class RuntimeContext(AbstractContextManager):
2828
"""A context manager to run NiPype interfaces."""
2929

30-
__slots__ = ("_runtime", "_resmon", "_ignore_exc")
30+
__slots__ = ("_ignore_exc", "_resmon", "_runtime")
3131

3232
def __init__(self, resource_monitor=False, ignore_exception=False):
3333
"""Initialize the context manager object."""

0 commit comments

Comments
 (0)