Skip to content

Commit

Permalink
fix paulhoule#6 from paulhoule/gastrodon: trying to fix problems when…
Browse files Browse the repository at this point in the history
… casting columns
  • Loading branch information
iipr committed Apr 29, 2019
1 parent 02abe83 commit dde4ce6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gastrodon/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -393,8 +393,8 @@ def _dataframe(self, result:SPARQLResult)->pd.DataFrame:
for variable in result.vars:
column[str(variable)].append(self.to_python(bindings.get(variable)))

for key in column:
column[key] = self._normalize_column_type(column[key])
#for key in column:
# column[key] = self._normalize_column_type(column[key])

return pd.DataFrame(column)

Expand Down

0 comments on commit dde4ce6

Please sign in to comment.