Skip to content

Commit

Permalink
[FIX] add missing f-string
Browse files Browse the repository at this point in the history
  • Loading branch information
sophiamaedler committed Feb 14, 2025
1 parent 3caab02 commit 53fa8be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scportrait/pipeline/project.py
Original file line number Diff line number Diff line change
Expand Up @@ -537,7 +537,7 @@ def _save_interactive_sdata(self):
assert self.interactive_sdata is not None, "No interactive sdata object found."

in_memory_only, _ = self.interactive_sdata._symmetric_difference_with_zarr_store()
print("Writing the following manually added files to the sdata object: {in_memory_only}")
print(f"Writing the following manually added files to the sdata object: {in_memory_only}")

dict_lookup = {}
for elem in in_memory_only:
Expand Down

0 comments on commit 53fa8be

Please sign in to comment.