From 1d6711653e7af04b7f2096cebeccabdce09af814 Mon Sep 17 00:00:00 2001 From: Alex Sorokoumov Date: Wed, 17 Dec 2025 22:08:51 -0800 Subject: [PATCH] Fix type annotation in test_config.py --- otava/test_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/otava/test_config.py b/otava/test_config.py index c2a2c3bc..f7b9f2d4 100644 --- a/otava/test_config.py +++ b/otava/test_config.py @@ -353,7 +353,7 @@ def create_postgres_test_config(test_name: str, test_info: Dict) -> PostgresTest raise TestConfigError(f"Configuration key not found in test {test_name}: {e.args[0]}") -def create_bigquery_test_config(test_name: str, test_info: Dict) -> PostgresTestConfig: +def create_bigquery_test_config(test_name: str, test_info: Dict) -> BigQueryTestConfig: try: time_column = test_info.get("time_column", "time") attributes = test_info.get("attributes", [])