Tox fixes, and catching a few things lost in the merge.

This commit is contained in:
Ebag333
2017-02-11 09:23:23 -08:00
parent 81e5b33bc9
commit 096842de44
8 changed files with 17 additions and 15 deletions

View File

@@ -159,7 +159,6 @@ class HandledModuleList(HandledList):
dummy.position = index
self[index] = dummy
def toModule(self, index, mod):
mod.position = index
self[index] = mod

View File

@@ -39,6 +39,9 @@ logger = logging.getLogger(__name__)
class ImplantLocation(Enum):
def __init__(self):
Enum.__init__(self)
FIT = 0
CHARACTER = 1