Skip to content

Commit 545a621

Browse files
authored
fix: missing f-string in --help message (#790)
1 parent 4c8e891 commit 545a621

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

nox/_options.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@ def _tag_completer(
424424
merge_func=_default_venv_backend_merge_func,
425425
help=(
426426
"Virtual environment backend to use by default for Nox sessions, this is"
427-
" ``'virtualenv'`` by default but any of ``{list(ALL_VENVS)!r}`` are accepted."
427+
f" ``'virtualenv'`` by default but any of ``{list(ALL_VENVS)!r}`` are accepted."
428428
),
429429
choices=list(ALL_VENVS),
430430
),
@@ -438,7 +438,7 @@ def _tag_completer(
438438
help=(
439439
"Virtual environment backend to force-use for all Nox sessions in this run,"
440440
" overriding any other venv backend declared in the Noxfile and ignoring"
441-
" the default backend. Any of ``{list(ALL_VENVS)!r}`` are accepted."
441+
f" the default backend. Any of ``{list(ALL_VENVS)!r}`` are accepted."
442442
),
443443
choices=list(ALL_VENVS),
444444
),

0 commit comments

Comments
 (0)