Fixed quicksight conn (#16537)

This commit is contained in:
Onkar Ravgan 2024-06-05 14:24:41 +05:30 committed by GitHub
parent 0106963e7e
commit e9ec4367ee
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -129,11 +129,11 @@ class QuicksightSource(DashboardServiceSource):
""" """
return dashboard.Name return dashboard.Name
def get_dashboard_details(self, dashboard: dict) -> DashboardDetail: def get_dashboard_details(self, dashboard: DashboardDetail) -> DashboardDetail:
""" """
Get Dashboard Details Get Dashboard Details
""" """
return DashboardDetail(**dashboard) return dashboard
def yield_dashboard( def yield_dashboard(
self, dashboard_details: DashboardDetail self, dashboard_details: DashboardDetail