Skip to content

Commit

Permalink
fix: Fixed bug when saving image without header
Browse files Browse the repository at this point in the history
  • Loading branch information
Karol-G committed Aug 19, 2024
1 parent c55b323 commit f89a0ce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion medvol/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = "0.0.10"
__version__ = "0.0.11"

from medvol.medvol import MedVol
2 changes: 1 addition & 1 deletion medvol/medvol.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def __init__(self,
self.header = header
self._has_header = True
else:
self.header = None
self.header = {}
self._has_header = False

# Validate is_seg: Must be None or a boolean
Expand Down

0 comments on commit f89a0ce

Please sign in to comment.