Kaydet (Commit) 7dabfede authored tarafından Raymond Hettinger's avatar Raymond Hettinger

Fix whitespace

üst 7e0c581c
......@@ -196,7 +196,7 @@ def lru_cache(maxsize=100, typed=False):
def wrapper(*args, **kwds):
# no caching, just do a statistics update after a successful call
nonlocal misses
result = user_function(*args, **kwds)
result = user_function(*args, **kwds)
misses += 1
return result
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment