Skip to content

Commit

Permalink
fix: F403
Browse files Browse the repository at this point in the history
  • Loading branch information
paquiteau committed Feb 16, 2024
1 parent 6f5ab0a commit 3577937
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions src/modopt/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

"""MODOPT PACKAGE.
ModOpt is a series of Modular Optimisation tools for solving inverse problems.
Expand All @@ -9,7 +8,15 @@

from importlib_metadata import version

from modopt.base import *
from modopt.base import np_adjust, transform, types, wrappers, observable

__all__ = [
"np_adjust",
"transform",
"types",
"wrappers",
"observable",
]

try:
_version = version("modopt")
Expand Down

0 comments on commit 3577937

Please sign in to comment.