Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7dabfed

Browse files
committed
Fix whitespace
1 parent 7e0c581 commit 7dabfed

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/functools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ def make_key(args, kwds, typed, tuple=tuple, sorted=sorted, type=type):
196196
def wrapper(*args, **kwds):
197197
# no caching, just do a statistics update after a successful call
198198
nonlocal misses
199-
result = user_function(*args, **kwds)
199+
result = user_function(*args, **kwds)
200200
misses += 1
201201
return result
202202

0 commit comments

Comments
 (0)