Skip to content

Commit

Permalink
Interpret all csv values as strings
Browse files Browse the repository at this point in the history
  • Loading branch information
annehaley committed May 5, 2022
1 parent d37eed2 commit 8f82cdb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion miqa/core/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ def import_data(project_id: Optional[str]):
with open(import_path) as fd:
buf = fd.read()
import_dict = import_dataframe_to_dict(
pandas.read_csv(StringIO(buf), index_col=False, na_filter=False),
pandas.read_csv(StringIO(buf), index_col=False, na_filter=False).astype(str),
project,
)
elif import_path.endswith('.json'):
Expand Down

0 comments on commit 8f82cdb

Please sign in to comment.