1
0
mirror of https://github.com/zeldaret/oot.git synced 2024-09-21 21:04:43 +00:00

Use typing.List

This commit is contained in:
cadmic 2024-01-24 14:24:39 -08:00
parent 477334e527
commit 5f3097e65c

View File

@ -13,7 +13,7 @@ class DmaFile:
overlay_vram_start: typing.Optional[int]
overlay_dir: typing.Optional[str]
def parse_file_addresses(path: Path) -> list[DmaFile]:
def parse_file_addresses(path: Path) -> typing.List[DmaFile]:
result = []
with open(path) as f:
reader = csv.DictReader(f)