Skip to content

Commit

Permalink
Fix minor error handling with video generation (#362)
Browse files Browse the repository at this point in the history
* Update version

* Add check for stitched images
  • Loading branch information
jmcoreymv authored Apr 19, 2024
1 parent 141dc3c commit 8ed9669
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion modules/protocol_post_processing_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,8 @@ def load_folder(

if include_composite_and_stitched_images:
# Create empty 'Tile label' for already stitched images
stitched_images_df['Tile'] = ""
if stitched_images_df is not None:
stitched_images_df['Tile'] = ""

composite_and_stitched_images_df = self._get_post_generated_images(
parent_path=path,
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.7.3
1.8.0

0 comments on commit 8ed9669

Please sign in to comment.