Skip to content

Commit

Permalink
add missing f-strings
Browse files Browse the repository at this point in the history
  • Loading branch information
sophiamaedler committed Feb 20, 2025
1 parent 238675a commit 776d503
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/scportrait/pipeline/segmentation/segmentation.py
Original file line number Diff line number Diff line change
Expand Up @@ -759,8 +759,8 @@ def _resolve_sharding(self, sharding_plan):
Warning("Shapes do not match")
self.log("Shapes do not match")
self.log(f"window: {(window[0], window[1])}")
self.log("shifted_map shape: {shifted_map.shape}")
self.log("orig_input shape: {orig_input.shape}")
self.log(f"shifted_map shape: {shifted_map.shape}")
self.log(f"orig_input shape: {orig_input.shape}")

raise ValueError("Shapes do not match. Please send this example to the developers for troubleshooting.")

Expand Down

0 comments on commit 776d503

Please sign in to comment.