From ac7d34a0efe4dae312a5b5576eb74988c1dec102 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) --- databuilder/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/databuilder/README.md b/databuilder/README.md index 10e874af56..87d297cbec 100644 --- a/databuilder/README.md +++ b/databuilder/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).