1
Fork 0
mirror of https://github.com/Steffo99/lihzahrd.git synced 2024-11-21 15:44:24 +00:00

Remove unused bool from pylons

This commit is contained in:
Steffo 2020-06-03 14:32:38 +02:00
parent 3f0c1f05d9
commit 101fdf0da9

View file

@ -1,8 +1,5 @@
class Pylon:
"""Data pertaining to a Pylon (https://terraria.gamepedia.com/Pylons)"""
def __init__(self, pylon: bool = True):
self.pylon: bool = pylon
def __repr__(self):
return f"pylon={self.pylon}"
return f"Pylon()"