Skip to content

Commit

Permalink
Prgoress
Browse files Browse the repository at this point in the history
  • Loading branch information
mistercrunch committed May 4, 2017
1 parent fc746aa commit 406bd85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion superset/models/core.py
Expand Up @@ -581,7 +581,7 @@ def get_df(self, sql, schema):
cur.execute(sql, **self.db_engine_spec.cursor_execute_kwargs)

cols = [col[0] for col in cur.description]
df = pd.DataFrame(cur.fetchall(), columns=cols)
df = pd.DataFrame(list(cur.fetchall()), columns=cols)

def needs_conversion(df_series):
if df_series.empty:
Expand Down

0 comments on commit 406bd85

Please sign in to comment.