Skip to content

Commit dfe78fc

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 1263dd2 commit dfe78fc

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

tests/unit/cli/test_schemas.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,11 @@ def test_check_schema_builtin(name):
1515
if name == "vendor.compose-spec":
1616
pytest.skip("vendor.compose-spec does not work")
1717
return
18-
regex_name = RegexVariantName.nonunicode if "azure-pipelines" in name else RegexVariantName.default
18+
regex_name = (
19+
RegexVariantName.nonunicode
20+
if "azure-pipelines" in name
21+
else RegexVariantName.default
22+
)
1923
regex_impl = RegexImplementation(regex_name)
2024
schema = get_builtin_schema(name)
2125

0 commit comments

Comments
 (0)