Skip to content

Commit

Permalink
fix: missing f-string in --help message (#790)
Browse files Browse the repository at this point in the history
  • Loading branch information
cjolowicz authored Mar 4, 2024
1 parent 4c8e891 commit 545a621
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nox/_options.py
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ def _tag_completer(
merge_func=_default_venv_backend_merge_func,
help=(
"Virtual environment backend to use by default for Nox sessions, this is"
" ``'virtualenv'`` by default but any of ``{list(ALL_VENVS)!r}`` are accepted."
f" ``'virtualenv'`` by default but any of ``{list(ALL_VENVS)!r}`` are accepted."
),
choices=list(ALL_VENVS),
),
Expand All @@ -438,7 +438,7 @@ def _tag_completer(
help=(
"Virtual environment backend to force-use for all Nox sessions in this run,"
" overriding any other venv backend declared in the Noxfile and ignoring"
" the default backend. Any of ``{list(ALL_VENVS)!r}`` are accepted."
f" the default backend. Any of ``{list(ALL_VENVS)!r}`` are accepted."
),
choices=list(ALL_VENVS),
),
Expand Down

0 comments on commit 545a621

Please sign in to comment.