mirror of
https://github.com/zeldaret/oot.git
synced 2024-12-01 23:36:00 +00:00
Use typing.List
This commit is contained in:
parent
477334e527
commit
5f3097e65c
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue