Skip to content

Commit 2e4d5e8

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 4c260b7 commit 2e4d5e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tox/config/loader/api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ def load(
157157
elif isinstance(converted, SetEnv) and isinstance(converted_override, SetEnv):
158158
converted.update(converted_override, override=True)
159159
elif isinstance(converted, PythonDeps) and isinstance(converted_override, PythonDeps):
160-
converted += converted_override # type: ignore[operator]
160+
converted += converted_override # type: ignore[operator]
161161
else:
162162
msg = "Only able to append to lists and dicts"
163163
raise ValueError(msg)

0 commit comments

Comments
 (0)