diff --git a/.github/workflows/sync_data_schema_updates.yaml b/.github/workflows/sync_data_schema_updates.yaml index 7b88345..1e66b15 100644 --- a/.github/workflows/sync_data_schema_updates.yaml +++ b/.github/workflows/sync_data_schema_updates.yaml @@ -38,4 +38,4 @@ jobs: echo -e "\nCommit message created : $cmsg" echo -e "\nCommitting if there are files to update in client dir:" echo `git commit -m "$cmsg"` - echo `git push` \ No newline at end of file + echo `git push` diff --git a/.github/workflows/validate_json_schemas.yaml b/.github/workflows/validate_json_schemas.yaml index a7e8477..af85ea8 100644 --- a/.github/workflows/validate_json_schemas.yaml +++ b/.github/workflows/validate_json_schemas.yaml @@ -26,4 +26,4 @@ jobs: run: curl -o ./scripts/jsonschema-org-schema.json https://json-schema.org/draft-04/schema - name: Validate JSON Schema - run: python3 ./scripts/validate_json_schema.py \ No newline at end of file + run: python3 ./scripts/validate_json_schema.py diff --git a/scripts/requirements.txt b/scripts/requirements.txt index 8c4acbc..89099e3 100644 --- a/scripts/requirements.txt +++ b/scripts/requirements.txt @@ -1 +1 @@ -jsonschema==4.23.0 \ No newline at end of file +jsonschema==4.23.0 diff --git a/scripts/validate_json_schemas.py b/scripts/validate_json_schemas.py index 76d7557..fd4e7df 100644 --- a/scripts/validate_json_schemas.py +++ b/scripts/validate_json_schemas.py @@ -16,4 +16,4 @@ def validateJsonSchemas(): if __name__ == "__main__": - validateJsonSchemas() \ No newline at end of file + validateJsonSchemas()