From ec93c1abc4388d361f98faec6cfac3418dcdfd89 Mon Sep 17 00:00:00 2001 From: maxid Date: Sun, 7 Dec 2025 18:54:57 +0100 Subject: [PATCH] remove argument self --- media_manager/notification/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media_manager/notification/utils.py b/media_manager/notification/utils.py index 683d02c..ade7d7d 100644 --- a/media_manager/notification/utils.py +++ b/media_manager/notification/utils.py @@ -27,7 +27,7 @@ def send_email(subject: str, html: str, addressee: str) -> None: log.info(f"Successfully sent email to {addressee} with subject: {subject}") -def detect_unknown_media(self, path: Path) -> list[Path]: +def detect_unknown_media(path: Path) -> list[Path]: libraries = [] libraries.extend(AllEncompassingConfig().misc.movie_libraries) libraries.extend(AllEncompassingConfig().misc.tv_libraries)