From 82c1852390fb380e945e16c437c61fa95ff926b6 Mon Sep 17 00:00:00 2001 From: bymyself Date: Sat, 28 Jun 2025 22:57:51 -0700 Subject: [PATCH] [tests] Fix ruff linting errors Remove trailing whitespace from blank lines --- tests-api/test_schema_validation.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests-api/test_schema_validation.py b/tests-api/test_schema_validation.py index 56675916f..6b1143efe 100644 --- a/tests-api/test_schema_validation.py +++ b/tests-api/test_schema_validation.py @@ -187,7 +187,7 @@ def test_response_schema_validation( for device in response_data.get('devices', []): if 'index' in device and device['index'] is None: del device['index'] - + # Validate the response validation_result = validate_response( response_data, @@ -254,7 +254,7 @@ def test_system_stats_response(require_server, api_client, api_spec: Dict[str, A for device in stats.get('devices', []): if 'index' in device and device['index'] is None: del device['index'] - + # Perform schema validation validation_result = validate_response( stats,