mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2026-03-20 18:27:23 +01:00
Fixed B007 (unused-loop-control-variable)
This commit is contained in:
committed by
Joshua Tauberer
parent
c953e5784d
commit
57d05c1ab2
@@ -262,7 +262,7 @@ def provision_certificates(env, limit_domains):
|
||||
# primary domain listed in each certificate.
|
||||
from dns_update import get_dns_zones
|
||||
certs = { }
|
||||
for zone, zonefile in get_dns_zones(env):
|
||||
for zone, _zonefile in get_dns_zones(env):
|
||||
certs[zone] = [[]]
|
||||
for domain in sort_domains(domains, env):
|
||||
# Does the domain end with any domain we've seen so far.
|
||||
|
||||
Reference in New Issue
Block a user