diff options
author | hippo91 <guillaume.peillex@gmail.com> | 2020-12-29 18:35:22 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-29 18:35:22 +0100 |
commit | bdf1beaf303799f51b32f3ac0497e446a0b4de9c (patch) | |
tree | 0e7b98351c7260a77e37a1c7f8d2cb90aeaee41d | |
parent | be47792c1d064266b9603bc3caac315f99342d0b (diff) | |
download | astroid-git-bdf1beaf303799f51b32f3ac0497e446a0b4de9c.tar.gz |
Update astroid/interpreter/_import/spec.py
Taking into account @GergelyKalmar suggestion
Co-authored-by: Gergely Kalmár <gergely.kalmar@logikal.jp>
-rw-r--r-- | astroid/interpreter/_import/spec.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/astroid/interpreter/_import/spec.py b/astroid/interpreter/_import/spec.py index 9decefc5..4cec263b 100644 --- a/astroid/interpreter/_import/spec.py +++ b/astroid/interpreter/_import/spec.py @@ -276,7 +276,7 @@ def _precache_zipimporters(path=None): """ For each path that has not been already cached in the sys.path_importer_cache, create a new zipimporter - instance and store it into the cache. + instance and add it into the cache. Return a dict associating all paths, stored into the cache, to corresponding zipimporter instances |