🎨 Fixed some linter warnings

Applied suggested pylint fixes and suppressed unhelpful pylint messages
This commit is contained in:
GeoffreyCoulaud
2023-06-10 03:30:09 +02:00
parent eeb0f3e501
commit c9a96f5eec
8 changed files with 38 additions and 162 deletions

View File

@@ -73,7 +73,7 @@ class Manager:
if error in self.continue_on:
# Handle skippable errors (skip silently)
return
elif error in self.retryable_on:
if error in self.retryable_on:
if try_index < self.max_tries:
# Handle retryable errors
logging.error("Retrying %s in %s for %s", *logging_args)