From 545a6214a3fff89c4a72ce1628784f308584271d Mon Sep 17 00:00:00 2001 From: Claudio Jolowicz Date: Mon, 4 Mar 2024 19:58:14 +0100 Subject: [PATCH] fix: missing f-string in --help message (#790) --- nox/_options.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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), ),