I wasn't sure whether some cases should be annotated or not (e.g., a = int(something) versus a: int = int(something), which doesn't actually add any information). Decided to take a maximalist approach, let me know if there's some other heuristic I should follow.
I wasn't sure whether some cases should be annotated or not (e.g.,
a = int(something)
versusa: int = int(something)
, which doesn't actually add any information). Decided to take a maximalist approach, let me know if there's some other heuristic I should follow.