0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-03 19:28:55 +02:00

Pull out if statement from for loop

This commit is contained in:
Erik Johnston 2017-05-22 15:12:19 +01:00
parent e3417a06e2
commit bd7bb5df71

View file

@ -471,14 +471,22 @@ class CacheListDescriptor(_CacheDescriptorBase):
results = {}
cached_defers = {}
missing = []
# If the cache takes a single arg then that is used as the key,
# otherwise a tuple is used.
if num_args == 1:
def cache_get(arg):
return cache.get(arg, callback=invalidate_callback)
else:
key = list(keyargs)
def cache_get(arg):
key[self.list_pos] = arg
return cache.get(tuple(key), callback=invalidate_callback)
for arg in list_args:
try:
if num_args == 1:
res = cache.get(arg, callback=invalidate_callback)
else:
key = list(keyargs)
key[self.list_pos] = arg
res = cache.get(tuple(key), callback=invalidate_callback)
res = cache_get(arg)
if not isinstance(res, ObservableDeferred):
results[arg] = res