From 0990e60e6373ff0314482f099c9158cb45050b5f Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Mon, 18 Feb 2019 00:04:27 +0100 Subject: [PATCH] missing return (linter wtf) --- utils/cast.py | 1 + 1 file changed, 1 insertion(+) diff --git a/utils/cast.py b/utils/cast.py index 1e2e329d..0f46d3c8 100644 --- a/utils/cast.py +++ b/utils/cast.py @@ -66,6 +66,7 @@ class DamageComponent: string += s(strings.SPELL.ACCURACY, words={"accuracy": str(self.miss_chance)}) if self.repeat > 1: string += s(strings.SPELL.REPEAT, words={"repeat": str(self.repeat)}) + return string class HealingComponent: