Skip to content

Commit

Permalink
fix py3.8 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
Ixrec committed May 29, 2024
1 parent 6df9a9c commit 9669bc8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion worlds/outer_wilds/Coordinates.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
}


def coordinate_description(coordinate: list[int]) -> str:
def coordinate_description(coordinate: List[int]) -> str:
point_descriptions = []
for point in coordinate:
if point == 0:
Expand Down

0 comments on commit 9669bc8

Please sign in to comment.