From d641c04bde967f75d2d6cace22ec650d04b8ccaf Mon Sep 17 00:00:00 2001 From: rookiestar28 Date: Thu, 12 Mar 2026 18:46:00 +0800 Subject: [PATCH] chore: apply auto formated file --- scripts/check_openapi_sync.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/check_openapi_sync.py b/scripts/check_openapi_sync.py index b67c6aa..58815d1 100644 --- a/scripts/check_openapi_sync.py +++ b/scripts/check_openapi_sync.py @@ -62,7 +62,9 @@ def validate_openapi_sync( generate_openapi_yaml: Callable[[str | Path | None], str] | None = None, ) -> tuple[bool, str]: root = _repo_root() - openapi_file = Path(openapi_path) if openapi_path else root / "docs" / "openapi.yaml" + openapi_file = ( + Path(openapi_path) if openapi_path else root / "docs" / "openapi.yaml" + ) contract_file = ( Path(contract_path) if contract_path