From a575660e5c76daca0924f6e9520fd7109e05f424 Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Fri, 13 Sep 2024 09:39:07 -0400 Subject: [PATCH] Make no assertions about the number. It could be negative. --- zipp/compat/overlay.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/zipp/compat/overlay.py b/zipp/compat/overlay.py index 366d2d5..5a97ee7 100644 --- a/zipp/compat/overlay.py +++ b/zipp/compat/overlay.py @@ -15,8 +15,7 @@ The ``zipfile`` object added to ``sys.modules`` needs to be hashable (#126). ->>> hash(sys.modules['zipp.compat.overlay.zipfile']) > 0 -True +>>> _ = hash(sys.modules['zipp.compat.overlay.zipfile']) """ import importlib