Skip to content

Commit

Permalink
Fixing the last py3 tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mistercrunch committed Mar 24, 2017
1 parent 72614f3 commit 2942d4d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion superset/dataframe.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ class SupersetDataFrame(object):
'b': 'BOOL', # boolean
'i': 'INT', # (signed) integer
'u': 'INT', # unsigned integer
'l': 'INT', # 64bit integer
'f': 'FLOAT', # floating-point
'c': 'FLOAT', # complex-floating point
'm': None, # timedelta
Expand Down Expand Up @@ -129,7 +130,7 @@ def columns(self):
if (
column['type'] == 'STRING' and
self.datetime_conversion_rate(sample[col]) >
INFER_COL_TYPES_THRESHOLD):
INFER_COL_TYPES_THRESHOLD):
column.update({
'is_date': True,
'is_dim': False,
Expand Down

0 comments on commit 2942d4d

Please sign in to comment.