Skip to content

Instantly share code, notes, and snippets.

@kunigami
Last active December 26, 2019 17:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kunigami/321574a0dcbf5102c05629b2b3fb47df to your computer and use it in GitHub Desktop.
Save kunigami/321574a0dcbf5102c05629b2b3fb47df to your computer and use it in GitHub Desktop.
T1 = TypeVar('T1')
T2 = TypeVar('T2')
def tuplify(a: T1, b: T2) -> Tuple[T1, T2]:
return (a, b)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment