Skip to content

Commit

Permalink
Addressing comments
Browse files Browse the repository at this point in the history
  • Loading branch information
mistercrunch committed Apr 24, 2017
1 parent 47fb14a commit a4db7e4
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 @@ -474,7 +474,7 @@ def visit_column(element, compiler, **kw):

# Removing empty strings and non numeric values
# targeting numeric columns
if v:
if v is not None:
values.append(v)
cond = col_obj.sqla_col.in_(values)
if op == 'not in':
Expand Down

0 comments on commit a4db7e4

Please sign in to comment.