From 658a87cbc0ee05571b60ffc3f02e647baf9729f8 Mon Sep 17 00:00:00 2001 From: Ebag333 Date: Thu, 15 Dec 2016 12:10:03 -0800 Subject: [PATCH] Single line change to fix most (all??) of the problems --- eos/saveddata/module.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eos/saveddata/module.py b/eos/saveddata/module.py index d20efad5f..4778be41e 100644 --- a/eos/saveddata/module.py +++ b/eos/saveddata/module.py @@ -64,7 +64,7 @@ class Hardpoint(Enum): TURRET = 2 -class Module(HandledItem, HandledCharge, ItemAttrShortcut, ChargeAttrShortcut, list): +class Module(HandledItem, HandledCharge, ItemAttrShortcut, ChargeAttrShortcut): """An instance of this class represents a module together with its charge and modified attributes""" DAMAGE_TYPES = ("em", "thermal", "kinetic", "explosive") MINING_ATTRIBUTES = ("miningAmount",)