Datasets:
Fix path to CSV when fetching history
Browse files- fetch_history.py +1 -1
fetch_history.py
CHANGED
@@ -53,7 +53,7 @@ def main():
|
|
53 |
session.mount("http://", adapter)
|
54 |
session.mount("https://", adapter)
|
55 |
|
56 |
-
with open("
|
57 |
# Count number of rows and reset
|
58 |
reader = csv.DictReader(csvfile)
|
59 |
rows = sum(1 for row in reader)
|
|
|
53 |
session.mount("http://", adapter)
|
54 |
session.mount("https://", adapter)
|
55 |
|
56 |
+
with open("repos.csv", "r") as csvfile:
|
57 |
# Count number of rows and reset
|
58 |
reader = csv.DictReader(csvfile)
|
59 |
rows = sum(1 for row in reader)
|