villebro commented on issue #19275:
URL: https://github.com/apache/superset/issues/19275#issuecomment-1073754326
No, this is basic python: the problem is you're calling `"'".join()` with
non-string values.:
```python
>>> "'".join(["a", "b", "c"])
"a'b'c"
>>> "'".join(["a", "b", 1])
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: sequence item 2: expected str instance, int found
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]