Skip to content

Commit

Permalink
fix: typo in Readme (#424)
Browse files Browse the repository at this point in the history
  • Loading branch information
damon09273 authored Dec 10, 2020
1 parent ea42c38 commit 29bd72f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down

0 comments on commit 29bd72f

Please sign in to comment.