From 453c20f53e53576f8da63a1b706de450e8ca4166 Mon Sep 17 00:00:00 2001 From: Yung-Chun Date: Sat, 10 Aug 2024 13:18:42 +0800 Subject: [PATCH] fix type hint (#17354) --- .../src/metadata/ingestion/source/database/database_service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ingestion/src/metadata/ingestion/source/database/database_service.py b/ingestion/src/metadata/ingestion/source/database/database_service.py index 0a000fe50e9..aee239c55ef 100644 --- a/ingestion/src/metadata/ingestion/source/database/database_service.py +++ b/ingestion/src/metadata/ingestion/source/database/database_service.py @@ -316,7 +316,7 @@ class DatabaseServiceSource( """ def yield_table_tag_details( - self, table_name_and_type: str + self, table_name_and_type: Tuple[str, TableType] ) -> Iterable[Either[OMetaTagAndClassification]]: """ From topology. To be run for each table