Skip to content

Instantly share code, notes, and snippets.

@gidgid
Last active October 11, 2020 06:03
Show Gist options
  • Save gidgid/90c1d1220692b329df08bc1a6727457b to your computer and use it in GitHub Desktop.
Save gidgid/90c1d1220692b329df08bc1a6727457b to your computer and use it in GitHub Desktop.
type hints only works on some dictionaries
from typing import Dict
ids_to_names: Dict[str, str] = {
"1234": "John",
"2345": "Doe",
"3456": "Alice",
"4567": "Bob",
} # 1
user = {"name": "John", "last_name": "Doe", "age": 42} # 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment