From cddc0b7315c7ec2ccd0cfd26a6bcc694c7d593a6 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Sat, 6 Jun 2020 18:59:37 +0200 Subject: [PATCH] Fix typo --- lihzahrd/header/treetopvariants.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lihzahrd/header/treetopvariants.py b/lihzahrd/header/treetopvariants.py index 6026a05..701d610 100755 --- a/lihzahrd/header/treetopvariants.py +++ b/lihzahrd/header/treetopvariants.py @@ -1,9 +1,10 @@ import typing + class TreetopVariants: - """Information about the treetop variants in the worls""" - def __init__(self, - treetop_variants: typing.List[str]): + """(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 __repr__(self):