Remove call to debugger
#7
by
albertvillanova
HF staff
- opened
- open_access.py +0 -3
open_access.py
CHANGED
@@ -195,9 +195,6 @@ class OpenAccess(datasets.GeneratorBasedBuilder):
|
|
195 |
# Incrementals
|
196 |
if incremental_file_lists:
|
197 |
for incremental_file_list, incremental_archive in zip(incremental_file_lists, incremental_archives):
|
198 |
-
import pdb
|
199 |
-
|
200 |
-
pdb.set_trace()
|
201 |
incrementals = pd.read_csv(incremental_file_list, index_col="Article File").to_dict(orient="index")
|
202 |
for path, file in incremental_archive:
|
203 |
data = incrementals.pop(path)
|
|
|
195 |
# Incrementals
|
196 |
if incremental_file_lists:
|
197 |
for incremental_file_list, incremental_archive in zip(incremental_file_lists, incremental_archives):
|
|
|
|
|
|
|
198 |
incrementals = pd.read_csv(incremental_file_list, index_col="Article File").to_dict(orient="index")
|
199 |
for path, file in incremental_archive:
|
200 |
data = incrementals.pop(path)
|