Skip to content

Commit

Permalink
fix: Fixed wrong type hint
Browse files Browse the repository at this point in the history
  • Loading branch information
Karol-G committed Dec 4, 2023
1 parent 8118d3f commit 926ab6a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion particleseg3d/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.2.12"
__version__ = "0.2.13"
2 changes: 1 addition & 1 deletion particleseg3d/utils/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,7 @@ def load_nifti(filename: str, return_meta: bool = False, is_seg: bool = False) -

def save_nifti(filename: str,
image: np.ndarray,
spacing: tuple[float] = None,
spacing: Tuple[float] = None,
affine: np.ndarray = None,
header: dict = None,
is_seg: bool = False,
Expand Down

0 comments on commit 926ab6a

Please sign in to comment.