From 101fdf0da941f2d78699c6ad1b5395b7338eee42 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Wed, 3 Jun 2020 14:32:38 +0200 Subject: [PATCH] Remove unused bool from pylons --- lihzahrd/tileentities/pylon.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/lihzahrd/tileentities/pylon.py b/lihzahrd/tileentities/pylon.py index c578a6a..cab858c 100755 --- a/lihzahrd/tileentities/pylon.py +++ b/lihzahrd/tileentities/pylon.py @@ -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()"