We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff78cb9 commit d9f453dCopy full SHA for d9f453d
citer.py
@@ -80,8 +80,9 @@ def update_results_parallel(conf, papers):
80
81
def fetch_parallel(results, confs):
82
with ThreadPoolExecutor(max_workers=1) as executor:
83
- for conf in confs if conf in results:
84
- print(f"---fetch_parallel--conf:{conf}---results[conf]:{results[conf]}")
+ for conf in confs:
+ if conf in results:
85
+ print(f"---fetch_parallel--conf:{conf}---results[conf]:{results[conf]}")
86
future_to_conf = {
87
executor.submit(update_results_parallel, conf, results[conf]): conf
88
for conf in confs if conf in results
0 commit comments