Commit 7dabfede authored by Raymond Hettinger's avatar Raymond Hettinger

Fix whitespace

parent 7e0c581c
...@@ -196,7 +196,7 @@ def lru_cache(maxsize=100, typed=False): ...@@ -196,7 +196,7 @@ def lru_cache(maxsize=100, typed=False):
def wrapper(*args, **kwds): def wrapper(*args, **kwds):
# no caching, just do a statistics update after a successful call # no caching, just do a statistics update after a successful call
nonlocal misses nonlocal misses
result = user_function(*args, **kwds) result = user_function(*args, **kwds)
misses += 1 misses += 1
return result 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