chore(lint): more linting fixes

This commit is contained in:
2025-04-30 17:22:21 +03:00
parent af085bf9bb
commit d0669e4dd0
6 changed files with 98 additions and 61 deletions

View File

@@ -365,12 +365,12 @@ class AeonViewHelpers:
if url.endswith(".png"):
return ".png"
elif url.endswith(".gif"):
if url.endswith(".gif"):
return ".gif"
elif url.endswith(".webp"):
if url.endswith(".webp"):
return ".webp"
else:
return ".jpg"
return ".jpg"
@staticmethod
def setup_logger(verbose: bool):