Skip to content

Commit 319c3bb

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
1 parent cd60ff8 commit 319c3bb

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

stdlib/@tests/test_cases/check_functools.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,10 +86,12 @@ def check_cache(x: int) -> int:
8686
def check_lru_cache(x: int) -> int:
8787
return x * 2
8888

89+
8990
@lru_cache(maxsize=32)
9091
def check_lru_cache_with_maxsize(x: int) -> int:
9192
return x * 2
9293

94+
9395
assert_type(check_lru_cache(3), int)
9496
assert_type(check_lru_cache_with_maxsize(3), int)
9597
# Type checkers should check the argument type, but this is currently not

0 commit comments

Comments
 (0)