1
Fork 0
mirror of https://github.com/Steffo99/lihzahrd.git synced 2024-11-21 15:44:24 +00:00

Fix type annotation

This commit is contained in:
Steffo 2020-06-08 02:56:13 +02:00
parent be6e1a0b18
commit f8dd891538
Signed by: steffo
GPG key ID: 896A80F55F7C97F0

View file

@ -4,8 +4,8 @@ import typing
class TreetopVariants:
"""(Unknown) Information about the treetop variants in the world."""
def __init__(self, treetop_variants: typing.List[str]):
self.treetop_variants: typing.List[str] = treetop_variants
def __init__(self, treetop_variants: typing.List[int]):
self.treetop_variants: typing.List[int] = treetop_variants
def __repr__(self):
return f"WorldTreetopVariants({self.treetop_variants})"