From 29bd72f442ce8feb002a6b56b39f38b099186604 Mon Sep 17 00:00:00 2001 From: Damon Date: Fri, 11 Dec 2020 01:15:39 +0800 Subject: [PATCH] fix: typo in Readme (#424) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 10e874af5..87d297cbe 100644 --- a/README.md +++ b/README.md @@ -729,7 +729,7 @@ job.launch() The `RedashDashboardExtractor` extracts raw queries from each dashboard. You may optionally use these queries to parse out relations to tables in Amundsen. A table parser can be provided in the configuration for the `RedashDashboardExtractor`, as seen above. This function should have type signature `(RedashVisualizationWidget) -> Iterator[TableRelationData]`. For example: ```python -def parse_tables(viz_widget: RedashVisualiationWidget) -> Iterator[TableRelationData]: +def parse_tables(viz_widget: RedashVisualizationWidget) -> Iterator[TableRelationData]: # Each viz_widget corresponds to one query. # viz_widget.data_source_id is the ID of the target DB in Redash. # viz_widget.raw_query is the raw query (e.g., SQL).