1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-08-04 04:20:53 +00:00

Fixed E713 (not-in-test): Test for membership should be not in

This commit is contained in:
Teal Dulcet 2023-12-22 07:22:55 -08:00
parent dc8ecfefd9
commit f8005307a7

View File

@ -221,7 +221,7 @@ def get_mail_aliases_ex(env):
domain = get_domain(address)
# add to list
if not domain in domains:
if domain not in domains:
domains[domain] = {
"domain": domain,
"aliases": [],