ast-tuple
usage:
def f() -> ast.Tuple(int, int):
For python like 3.7, consider from typing import Tuple
. For higher versions, of course you can use tuple[]
very well.
usage:
def f() -> ast.Tuple(int, int):
For python like 3.7, consider from typing import Tuple
. For higher versions, of course you can use tuple[]
very well.