Skip to content

Commit

Permalink
Fix ruff check
Browse files Browse the repository at this point in the history
  • Loading branch information
Anavelyz committed Oct 24, 2024
1 parent 2830945 commit 9612f44
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/scripts/test_azure_pipelines.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,14 @@

import yaml

from jsonschema import ValidationError, validate
from jsonschema import validate

print(sys.argv)
args = 3
if len(sys.argv) != args:
raise Exception("Usage: python test_azure_pipelines.py <schema_file> <yaml_file>")
raise Exception(
"Usage: python test_azure_pipelines.py <schema_file> <yaml_file>"
)

schema_file = sys.argv[1]
yaml_file = sys.argv[2]
Expand Down

0 comments on commit 9612f44

Please sign in to comment.