Skip to content

Commit

Permalink
[flake8] Resolving Q??? errors (apache#3847)
Browse files Browse the repository at this point in the history
(cherry picked from commit 067596e)
  • Loading branch information
john-bodley authored and mistercrunch committed Nov 20, 2017
1 parent 90bcf15 commit 2eafd38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion superset/connectors/sqla/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ def get_sqla_query( # sqla
# For backwards compatibility and edge cases
# where a column data type might have changed
if isinstance(v, basestring):
v = v.strip("'").strip('"')
v = v.strip(""").strip(""")
if col_obj.is_num:
v = utils.string_to_num(v)

Expand Down

0 comments on commit 2eafd38

Please sign in to comment.