Skip to content

Commit

Permalink
ci: fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
JohannesGaessler committed Jan 11, 2025
1 parent dfb0657 commit aba95ed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion kafe2/fit/indexed/model.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import numpy as np
import numdifftools as nd
import numpy as np

from .._base import ModelFunctionBase, ParametricModelBaseMixin
from .container import IndexedContainer
Expand Down
2 changes: 1 addition & 1 deletion kafe2/fit/xy/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
import typing # help IDEs with type-hinting inside docstrings # noqa: F401 (unused import)
except ImportError:
pass
import numdifftools as nd
import numpy # help IDEs with type-hinting inside docstrings
import numpy as np
import numdifftools as nd

from .._base import ParametricModelBaseMixin
from ..util import function_library
Expand Down

0 comments on commit aba95ed

Please sign in to comment.