Skip to content

Commit

Permalink
fix table_like method call
Browse files Browse the repository at this point in the history
  • Loading branch information
cemremengu committed Jun 14, 2023
1 parent 1270180 commit f578550
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion superset/reports/commands/execute.py
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ def _get_notification_content(self) -> NotificationContent:
screenshot_data = self._get_screenshots()
if not screenshot_data:
error_text = "Unexpected missing screenshot"
elif self._report_schedule.report_format in ReportDataFormat.table_like:
elif self._report_schedule.report_format in ReportDataFormat.table_like():
df = self._get_data()
data = None
if self._report_schedule.report_format == ReportDataFormat.CSV:
Expand Down

0 comments on commit f578550

Please sign in to comment.