Skip to content

Commit

Permalink
馃摑 55 - Remove "Skipping empty mask layer" print
Browse files Browse the repository at this point in the history
  • Loading branch information
asim-shrestha committed Sep 27, 2022
1 parent d1a3e1f commit 831c238
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion rt_utils/image_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ def get_contours_coords(roi_data: ROIData, series_data):
# Do not add ROI's for blank slices
if np.sum(mask_slice) == 0:
series_contours.append([])
print("Skipping empty mask layer")
continue

# Create pin hole mask if specified
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import setuptools

VERSION = "1.2.3"
VERSION = "1.2.4"
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
with open("requirements.txt") as f:
Expand Down

0 comments on commit 831c238

Please sign in to comment.