From 3faf8a0f971e2d86636108c3f8d309eb17083530 Mon Sep 17 00:00:00 2001 From: Blallo Date: Thu, 1 Aug 2019 16:14:54 +0200 Subject: [PATCH] Remove unused var. --- bot_z/operator.py | 1 - 1 file changed, 1 deletion(-) diff --git a/bot_z/operator.py b/bot_z/operator.py index 4d4f497..466d203 100644 --- a/bot_z/operator.py +++ b/bot_z/operator.py @@ -52,7 +52,6 @@ def safely(retries: int = 0) -> T.Callable: def _protection(self, *args, **kwargs): r = ret - done = False while r > 0: try: val = f(self, *args, **kwargs)