Skip to content

Commit

Permalink
Fix type annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
Steffo99 committed Jun 10, 2020
1 parent 8e4f115 commit af58d2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lihzahrd/header/treetopvariants.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
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})"

0 comments on commit af58d2e

Please sign in to comment.