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 Aug 11, 2023
1 parent 121135f commit 1cec348
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/tox/config/loader/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,8 @@ def load( # noqa: PLR0913
if isinstance(converted, list) and isinstance(appends, list):
converted += appends
else:
raise ValueError("Only able to append to lists")
msg = "Only able to append to lists"
raise ValueError(msg)
return converted

def build( # noqa: PLR0913
Expand Down

0 comments on commit 1cec348

Please sign in to comment.