From 63a8e40c27825b4e4ed4b3336a79e7fdad188b5f Mon Sep 17 00:00:00 2001 From: Nicolas Tessore Date: Sun, 10 Dec 2023 20:47:36 +0000 Subject: [PATCH] fix misleading comment --- heracles/maps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/heracles/maps.py b/heracles/maps.py index 730ee73..b7b2f87 100644 --- a/heracles/maps.py +++ b/heracles/maps.py @@ -826,7 +826,7 @@ def map_catalogs( # run all coroutines concurrently results = coroutines.run(coroutines.gather(*coros)) - # store results; extra results are truncated to length of keys + # store results for key, value in zip(keys, results): out[key] = value