Skip to content

Instantly share code, notes, and snippets.

@Kangaroux
Last active June 11, 2020 18:58
Show Gist options
  • Save Kangaroux/0b8c9b0e47967bdcaa9979f9e95b2b2d to your computer and use it in GitHub Desktop.
Save Kangaroux/0b8c9b0e47967bdcaa9979f9e95b2b2d to your computer and use it in GitHub Desktop.
# Old type comments:
foo = "bar" # type: str
# New type hints for Python 3.5+:
foo: str = "bar"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment