From edce67c3f29a8a853638ebc5f1f077676a1e9df4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Konrad=20Ja=C5=82owiecki?= Date: Thu, 11 Jul 2024 01:55:10 +0200 Subject: [PATCH] Apply black --- tests/conftest.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/tests/conftest.py b/tests/conftest.py index 5b7ae33..f1ef0e0 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -57,14 +57,11 @@ def pytest_generate_tests(metafunc): id=example["description"], ) for example in data - ] + ], ) elif "invalid_pydantic_examples" in marker_names: data = [ example["input"] - for example in ( - _load_yaml(INVALID_YAML_PROGRAMS_PATH) + - _load_yaml(INVALID_PYDANTIC_PROGRAMS_PATH) - ) + for example in (_load_yaml(INVALID_YAML_PROGRAMS_PATH) + _load_yaml(INVALID_PYDANTIC_PROGRAMS_PATH)) ] metafunc.parametrize("input", data)