-
Notifications
You must be signed in to change notification settings - Fork 201
Open
Labels
P2Low priority - Nice to haveLow priority - Nice to haveenhancementAny code-related improvementsAny code-related improvementsgood first issueGood for newcomersGood for newcomers
Description
Is this a duplicate?
- I confirmed there appear to be no duplicate issues for this request and that I agree to the Code of Conduct
Area
General cuda-python
Is your feature request related to a problem? Please describe.
As of Python 3.9, it is no longer necessary to do this kind of thing:
from typing import List
def foo() -> List[int]:
return [1, 2, 3]
You can instead do:
def foo() -> list[int]:
return [1, 2, 3]
Describe the solution you'd like
We should remove these uses of typing.Dict
, typing.List
, typing.Tuple
and typing.Set
and replace with built-in types where possible.
This might be a good job for Copilot.
Describe alternatives you've considered
No response
Additional context
No response
Copilot
Metadata
Metadata
Assignees
Labels
P2Low priority - Nice to haveLow priority - Nice to haveenhancementAny code-related improvementsAny code-related improvementsgood first issueGood for newcomersGood for newcomers
Type
Projects
Status
Todo