From b305871051b6fd8cd992fadbc28bb4c1d1fdd05b Mon Sep 17 00:00:00 2001 From: Teal Dulcet Date: Sun, 12 Jan 2025 07:12:44 -0800 Subject: [PATCH] Fixed ARG005 (unused-lambda-argument): Unused lambda argument: `alias` --- management/mailconfig.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/management/mailconfig.py b/management/mailconfig.py index 54e35019..3dc27580 100644 --- a/management/mailconfig.py +++ b/management/mailconfig.py @@ -301,7 +301,7 @@ def get_domain(emailaddr, as_unicode=True): pass return ret -def get_mail_domains(env, filter_aliases=lambda alias : True, users_only=False): +def get_mail_domains(env, filter_aliases=lambda _alias : True, users_only=False): # Returns the domain names (IDNA-encoded) of all of the email addresses # configured on the system. If users_only is True, only return domains # with email addresses that correspond to user accounts. Exclude Unicode