Skip to content

Commit 5212c7d

Browse files
committed
STY: f-str -> format (readability)
1 parent ddf3992 commit 5212c7d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

nibabel/cmdline/dicomfs.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,8 +196,8 @@ def release(self, path, flags, fh):
196196
def get_opt_parser():
197197
# use module docstring for help output
198198
p = OptionParser(
199-
usage=f"{os.path.basename(sys.argv[0])} [OPTIONS] "
200-
f"<DIRECTORY CONTAINING DICOMSs> <mount point>",
199+
usage="{} [OPTIONS] <DIRECTORY CONTAINING DICOMSs> <mount point>".format(
200+
os.path.basename(sys.argv[0])),
201201
version="%prog " + nib.__version__)
202202

203203
p.add_options([

0 commit comments

Comments
 (0)