Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
STY: Apply ruff rule UF023
UF023 `__slots__` is not sorted
  • Loading branch information
DimitriPapadopoulos committed Oct 5, 2024
commit 39e7d3ab849a6547cad9bbbc0a8d1277ae5a92cb
2 changes: 1 addition & 1 deletion nipype/interfaces/base/support.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
class RuntimeContext(AbstractContextManager):
"""A context manager to run NiPype interfaces."""

__slots__ = ("_runtime", "_resmon", "_ignore_exc")
__slots__ = ("_ignore_exc", "_resmon", "_runtime")

def __init__(self, resource_monitor=False, ignore_exception=False):
"""Initialize the context manager object."""
Expand Down
Loading