Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Correct name of typevar
  • Loading branch information
plokmijnuhby authored Sep 26, 2023
commit 662d99c38a6a9a9aefa42c33284be16893d73ac2
2 changes: 1 addition & 1 deletion test_cases/stdlib/builtins/check_reversed.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def __iter__(self):

assert_type(list(reversed(MyIterable())), list[str])

_T = TypeVar("T")
_T = TypeVar("_T")


class MyLenAndGetItem(Generic[_T]):
Expand Down