From 65eb0fac3d7fd743a59c263edaa60b05cefd8bab Mon Sep 17 00:00:00 2001 From: blitzmann Date: Sat, 5 Mar 2016 21:51:11 -0500 Subject: [PATCH] Fix syntax errors --- eos/effects/modifyenergywarfareresistance.py | 2 +- eos/effects/remotesensordampfalloff.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/eos/effects/modifyenergywarfareresistance.py b/eos/effects/modifyenergywarfareresistance.py index 2685b4a01..3c1400dc2 100644 --- a/eos/effects/modifyenergywarfareresistance.py +++ b/eos/effects/modifyenergywarfareresistance.py @@ -2,4 +2,4 @@ type = "passive" def handler(fit, module, context): fit.ship.boostItemAttr("energyWarfareResistance", module.getModifiedItemAttr("energyWarfareResistanceBonus"), - stackingPenalties = True + stackingPenalties = True) diff --git a/eos/effects/remotesensordampfalloff.py b/eos/effects/remotesensordampfalloff.py index 7fc0de1e5..8b57f1231 100644 --- a/eos/effects/remotesensordampfalloff.py +++ b/eos/effects/remotesensordampfalloff.py @@ -5,4 +5,4 @@ def handler(fit, module, context): fit.ship.boostItemAttr("maxTargetRange", module.getModifiedItemAttr("maxTargetRangeBonus"), stackingPenalties = True) fit.ship.boostItemAttr("scanResolution", module.getModifiedItemAttr("scanResolutionBonus"), - stackingPenalties = True + stackingPenalties = True)