Skip to content

Commit

Permalink
change print to f-string (#117)
Browse files Browse the repository at this point in the history
# Description
change string format to f-string

# References
https://peps.python.org/pep-0498/
  • Loading branch information
orena1 authored Mar 6, 2023
1 parent 114c0ff commit c3674e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/howtos/napari_imageJ.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ ij = imagej.init('sc.fiji:fiji') # Fiji includes Bio-Formats.

viewer = napari.Viewer()
for path in sys.argv[1:]:
print('--> Reading {}'.format(path))
print(f'--> Reading {path}')

dataset = ij.io().open(path)
image = ij.py.from_java(dataset)
Expand Down

0 comments on commit c3674e3

Please sign in to comment.