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:
parent
be6e1a0b18
commit
f8dd891538
1 changed files with 2 additions and 2 deletions
|
@ -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})"
|
||||
|
|
Loading…
Reference in a new issue