From ae9f47d5a580237bff9d1801d08ba2d0d8a8a398 Mon Sep 17 00:00:00 2001 From: Carlos Quintana <74399022+cquintana92@users.noreply.github.com> Date: Wed, 10 Jul 2024 09:40:37 +0200 Subject: [PATCH] fix: remove unnecessary staticmethod (#2147) --- app/mail_sender.py | 1 - 1 file changed, 1 deletion(-) diff --git a/app/mail_sender.py b/app/mail_sender.py index 9610b45b..9c749525 100644 --- a/app/mail_sender.py +++ b/app/mail_sender.py @@ -76,7 +76,6 @@ class SendRequest: file_path = os.path.join(config.SAVE_UNSENT_DIR, file_name) self.save_request_to_file(file_path) - @staticmethod def save_request_to_failed_dir(self, prefix: str = "DeliveryRetryFail"): file_name = ( f"{prefix}-{int(time.time())}-{uuid.uuid4()}.{SendRequest.SAVE_EXTENSION}"