mistercrunch closed pull request #5977: filter_values documentation fix
URL: https://github.com/apache/incubator-superset/pull/5977
This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:
As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):
diff --git a/superset/jinja_context.py b/superset/jinja_context.py
index 6d4b4c6fc1..e799b0bbc5 100644
--- a/superset/jinja_context.py
+++ b/superset/jinja_context.py
@@ -74,7 +74,7 @@ def filter_values(column, default=None):
Usage example:
SELECT action, count(*) as times
FROM logs
- WHERE action in ( {{ "'" + "','".join(filter_values('action_type')) +
"'" )
+ WHERE action in ( {{ "'" + "','".join(filter_values('action_type')) +
"'" }} )
GROUP BY 1
:param column: column/filter name to lookup
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]