Skip to content

Instantly share code, notes, and snippets.

@yothinix
Created March 1, 2018 14:35
Show Gist options
  • Save yothinix/53488f92fb6978ef3576ddbe745eca6e to your computer and use it in GitHub Desktop.
Save yothinix/53488f92fb6978ef3576ddbe745eca6e to your computer and use it in GitHub Desktop.
from typing import NewType
USERID = NewType('USERID', int)
def get_username(id: USERID) -> str:
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment