Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Dec 10, 2022
1 parent e2f2608 commit 58bf89b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tox/tox_env/api.py
Expand Up @@ -134,7 +134,7 @@ def pass_env_post_process(values: list[str]) -> list[str]:
blank_values = [v for v in values if " " in v or "\t" in v]
if blank_values:
raise Fail(
f"pass_env/passenv variable can't have values containing blanks like {blank_values}; a comma is possibly missing"
f"pass_env/passenv variable can't have values containing blanks like {blank_values}; a comma is possibly missing",
)
values.extend(self._default_pass_env())
return sorted({k: None for k in values}.keys())
Expand Down

0 comments on commit 58bf89b

Please sign in to comment.