From f834aaee471ef51e13814d7301d0322480d38a4e Mon Sep 17 00:00:00 2001 From: Jan Petykiewicz Date: Wed, 8 Feb 2023 08:44:42 -0800 Subject: [PATCH] fix precache --- masque/library.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/masque/library.py b/masque/library.py index 33f0b68..c7e3f88 100644 --- a/masque/library.py +++ b/masque/library.py @@ -999,7 +999,7 @@ class LazyLibrary(MutableLibrary): self """ for key in self.dict: - _ = self.dict.__getitem__(key) + _ = self[key] # want to trigger our own __getitem__ return self def __deepcopy__(self, memo: Optional[Dict] = None) -> 'LazyLibrary':