1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-09-03 09:20:55 +00:00

Fixed C414 (unnecessary-double-cast-or-process): Unnecessary list call within sorted()

This commit is contained in:
Teal Dulcet 2023-12-22 07:22:00 -08:00
parent d952590457
commit bddc2385db

View File

@ -320,7 +320,7 @@ def scan_mail_log(env):
if collector["other-services"] and False:
print_header("Other services")
print("The following unkown services were found in the log file.")
print(" ", *sorted(list(collector["other-services"])), sep='\n')
print(" ", *sorted(collector["other-services"]), sep='\n')
def scan_mail_log_line(line, collector):