Skip to content

Commit

Permalink
cast to str to comply with type definition
Browse files Browse the repository at this point in the history
  • Loading branch information
villebro committed May 9, 2023
1 parent 247abfe commit 8e9f9f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion superset/explore/permalink/commands/create.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def run(self) -> str:
value = {
"chartId": self.chart_id,
"datasourceId": datasource_id,
"datasourceType": datasource_type,
"datasourceType": datasource_type.value,
"datasource": self.datasource,
"state": self.state,
}
Expand Down

0 comments on commit 8e9f9f5

Please sign in to comment.