Skip to content
This repository was archived by the owner on Jun 16, 2025. It is now read-only.

Commit a57a1a1

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 1fb71c8 commit a57a1a1

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

demos/demc/linreg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
import matplotlib.pyplot as plt
2424
import numpy as np
2525

26-
__all__ = ("define_problem", "solve_regression", "plot_solutions")
26+
__all__ = ("define_problem", "plot_solutions", "solve_regression")
2727

2828

2929
def main():

demos/demc/naivemc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
import numpy as np
3030
from numpy.typing import NDArray
3131

32-
__all__ = ("LogPosterior", "plot_traj", "analyse_traj")
32+
__all__ = ("LogPosterior", "analyse_traj", "plot_traj")
3333

3434

3535
@attrs.define

src/parman/metafunc.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,10 @@
5252

5353
__all__ = (
5454
"MetaFuncBase",
55-
"validate",
56-
"type_api_from_signature",
57-
"type_api_from_mock",
5855
"MinimalMetaFunc",
56+
"type_api_from_mock",
57+
"type_api_from_signature",
58+
"validate",
5959
)
6060

6161

src/parman/treeleaf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
from collections.abc import Callable, Generator, Iterable
3636
from typing import Any
3737

38-
__all__ = ("get_tree", "iterate_tree", "transform_tree", "same")
38+
__all__ = ("get_tree", "iterate_tree", "same", "transform_tree")
3939

4040

4141
def get_tree(tree: Any, mulidx: tuple) -> Any:

0 commit comments

Comments
 (0)