mirror of
https://github.com/Steffo99/lihzahrd.git
synced 2024-11-21 23:54:23 +00:00
Fix type annotation
This commit is contained in:
parent
8e4f115d90
commit
af58d2e911
1 changed files with 2 additions and 2 deletions
|
@ -4,8 +4,8 @@ import typing
|
||||||
class TreetopVariants:
|
class TreetopVariants:
|
||||||
"""(Unknown) Information about the treetop variants in the world."""
|
"""(Unknown) Information about the treetop variants in the world."""
|
||||||
|
|
||||||
def __init__(self, treetop_variants: typing.List[str]):
|
def __init__(self, treetop_variants: typing.List[int]):
|
||||||
self.treetop_variants: typing.List[str] = treetop_variants
|
self.treetop_variants: typing.List[int] = treetop_variants
|
||||||
|
|
||||||
def __repr__(self):
|
def __repr__(self):
|
||||||
return f"WorldTreetopVariants({self.treetop_variants})"
|
return f"WorldTreetopVariants({self.treetop_variants})"
|
||||||
|
|
Loading…
Reference in a new issue