Skip to content

Commit

Permalink
🐛 Use custom class read_csv
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Wildenhain authored and pwildenhain committed Jul 16, 2020
1 parent d812964 commit 558ebb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion redcap/project.py
Original file line number Diff line number Diff line change
Expand Up @@ -791,6 +791,6 @@ def export_reports(self, format='json', report_id=None,
else:
df_kwargs = {'index_col': self.def_field}
buf = StringIO(response)
df = read_csv(buf, **df_kwargs)
df = self.read_csv(buf, **df_kwargs)
buf.close()
return df

0 comments on commit 558ebb0

Please sign in to comment.