We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c260b7 commit 2e4d5e8Copy full SHA for 2e4d5e8
src/tox/config/loader/api.py
@@ -157,7 +157,7 @@ def load(
157
elif isinstance(converted, SetEnv) and isinstance(converted_override, SetEnv):
158
converted.update(converted_override, override=True)
159
elif isinstance(converted, PythonDeps) and isinstance(converted_override, PythonDeps):
160
- converted += converted_override # type: ignore[operator]
+ converted += converted_override # type: ignore[operator]
161
else:
162
msg = "Only able to append to lists and dicts"
163
raise ValueError(msg)
0 commit comments