Skip to content

Commit

Permalink
fix: wrong data type for exports
Browse files Browse the repository at this point in the history
JIRA: TRIVIAL
risk: low
  • Loading branch information
hkad98 committed Nov 28, 2024
1 parent 39efe7c commit 6de617c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ class CatalogDeclarativeAutomation(CatalogAnalyticsBaseMeta):
export_definitions: Optional[list[CatalogExportDefinitionIdentifier]] = None
notification_channel: Optional[CatalogNotificationChannelIdentifier] = None
schedule: Optional[CatalogAutomationSchedule] = None
tabular_exports: Optional[CatalogAutomationTabularExport] = None
visual_exports: Optional[CatalogAutomationVisualExport] = None
tabular_exports: Optional[list[CatalogAutomationTabularExport]] = None
visual_exports: Optional[list[CatalogAutomationVisualExport]] = None

@staticmethod
def client_class() -> builtins.type[DeclarativeAutomation]:
Expand Down

0 comments on commit 6de617c

Please sign in to comment.