fix precache

This commit is contained in:
Jan Petykiewicz 2023-02-08 08:44:42 -08:00
parent 492565c1a6
commit ed8f2c1864

View File

@ -999,7 +999,7 @@ class LazyLibrary(MutableLibrary):
self self
""" """
for key in self.dict: for key in self.dict:
_ = self.dict.__getitem__(key) _ = self[key] # want to trigger our own __getitem__
return self return self
def __deepcopy__(self, memo: Optional[Dict] = None) -> 'LazyLibrary': def __deepcopy__(self, memo: Optional[Dict] = None) -> 'LazyLibrary':