mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-07-31 05:04:39 +00:00
Fixed iteration over None in Tableau ingestion (#20246)
Co-authored-by: Katarzyna Kałek <kkalek@olx.pl>
This commit is contained in:
parent
f291e5cb1d
commit
168e29423a
@ -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)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user