diff --git a/ingestion/src/metadata/ingestion/source/dashboard/tableau/metadata.py b/ingestion/src/metadata/ingestion/source/dashboard/tableau/metadata.py index 2de8758a61d..f8fe2c08bf5 100644 --- a/ingestion/src/metadata/ingestion/source/dashboard/tableau/metadata.py +++ b/ingestion/src/metadata/ingestion/source/dashboard/tableau/metadata.py @@ -189,7 +189,7 @@ class TableauSource(DashboardServiceSource): """ if self.source_config.includeTags: tags: Set[TableauTag] = set() - for container in [[dashboard_details], dashboard_details.charts]: + for container in [[dashboard_details], dashboard_details.charts or []]: for elem in container: tags.update(elem.tags)