From 236481ae1c10de731a1876466568532eba9bfd1c Mon Sep 17 00:00:00 2001 From: eichhornchen Date: Sun, 10 Jan 2021 21:44:45 +0100 Subject: [PATCH] linting --- squirrelbattle/interfaces.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/squirrelbattle/interfaces.py b/squirrelbattle/interfaces.py index ea59a04..306f857 100644 --- a/squirrelbattle/interfaces.py +++ b/squirrelbattle/interfaces.py @@ -775,7 +775,7 @@ class FightingEntity(Entity): based on their respective stats. """ damage = 0 - if amount != 0 : + if amount != 0: damage = max(1, amount - self.constitution) self.health -= damage if self.health <= 0: