Add __init__ to classes missing it

Mostly just to shut pyCharm up, but it's good practice.
This commit is contained in:
Ebag333
2016-10-19 08:15:36 -07:00
parent 3187bab90a
commit 699276ca58
5 changed files with 20 additions and 1 deletions

View File

@@ -30,12 +30,18 @@ import logging
logger = logging.getLogger(__name__)
class State(Enum):
def __init__(self):
pass
OFFLINE = -1
ONLINE = 0
ACTIVE = 1
OVERHEATED = 2
class Slot(Enum):
def __init__(self):
pass
# These are self-explanatory
LOW = 1
MED = 2
@@ -55,6 +61,9 @@ class Slot(Enum):
F_HEAVY = 12
class Hardpoint(Enum):
def __init__(self):
pass
NONE = 0
MISSILE = 1
TURRET = 2