diff options
| author | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2020-08-17 19:13:08 +0100 |
|---|---|---|
| committer | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2020-08-17 19:13:08 +0100 |
| commit | aef7c8e0bd7fd2c82ba3b13c87ccb8602ced79c7 (patch) | |
| tree | a3854e8710c5d16722f069f393be81267caced52 | |
| parent | Add a link to the annotation tool (diff) | |
| download | TCPD-aef7c8e0bd7fd2c82ba3b13c87ccb8602ced79c7.tar.gz TCPD-aef7c8e0bd7fd2c82ba3b13c87ccb8602ced79c7.zip | |
Use read_table instead of read_csv
| -rw-r--r-- | datasets/bitcoin/get_bitcoin.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/datasets/bitcoin/get_bitcoin.py b/datasets/bitcoin/get_bitcoin.py index 6dbd72a..e0b2917 100644 --- a/datasets/bitcoin/get_bitcoin.py +++ b/datasets/bitcoin/get_bitcoin.py @@ -75,7 +75,7 @@ def get_market_price(target_path=None): @validate(MD5_JSON) def write_json(csv_path, target_path=None): - rows = clevercsv.read_csv(csv_path) + rows = clevercsv.read_table(csv_path) rows = rows[500:] last_idx = next( |
