python: Convert last type comments to annotations.

We had skipped these in #14693 so we could keep generating a friendly
error on Python 3.5, but we gave that up in #19801.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg
2022-03-24 19:32:48 -07:00
committed by Tim Abbott
parent 548dd5a402
commit 2762121162
4 changed files with 5 additions and 5 deletions

View File

@@ -8,7 +8,7 @@ from typing import Iterable, List
def expand_reqs_helper(fpath: str) -> List[str]:
result = [] # type: List[str]
result: List[str] = []
with open(fpath) as f:
for line in f: