diff --git a/nox/_options.py b/nox/_options.py index a198b9ac..b7548499 100644 --- a/nox/_options.py +++ b/nox/_options.py @@ -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), ), @@ -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), ),