Skip to content

Commit 003a398

Browse files
Apply ruff rule RUF022
RUF022 `__all__` is not sorted
1 parent f92401e commit 003a398

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

nipy/algorithms/registration/scripting.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
timefuncs = st.timefuncs.SLICETIME_FUNCTIONS
2626

27-
__all__ = ["space_time_realign", "aff2euler"]
27+
__all__ = ["aff2euler", "space_time_realign"]
2828

2929

3030
def aff2euler(affine):

nipy/core/reference/__init__.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,8 @@
4242

4343
from . import coordinate_map, coordinate_system, slices
4444

45-
__all__ = ["coordinate_system", "coordinate_map",
46-
"slices"]
45+
__all__ = [
46+
"coordinate_map",
47+
"coordinate_system",
48+
"slices",
49+
]

0 commit comments

Comments
 (0)