From d557cbb80c1b4b657823593ab3a011256cef9ad8 Mon Sep 17 00:00:00 2001 From: BobTheBuidler <70677534+BobTheBuidler@users.noreply.github.com> Date: Tue, 26 Nov 2024 18:58:52 -0400 Subject: [PATCH] feat: optimize property instance cache (#452) --- a_sync/a_sync/property.pyx | 1 - 1 file changed, 1 deletion(-) diff --git a/a_sync/a_sync/property.pyx b/a_sync/a_sync/property.pyx index 48fc1543..89319bf2 100644 --- a/a_sync/a_sync/property.pyx +++ b/a_sync/a_sync/property.pyx @@ -734,7 +734,6 @@ class HiddenMethodDescriptor(ASyncMethodDescriptorAsyncDefault[I, Tuple[()], T]) cdef object bound try: bound = instance.__dict__[self.field_name] - bound._cache_handle.cancel() except KeyError: bound = HiddenMethod( instance,