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 committed by Joshua Tauberer
parent 4999ed7b1c
commit e0e6f1081b
1 changed files with 1 additions and 1 deletions

View File

@ -320,7 +320,7 @@ def scan_mail_log(env):
if collector["other-services"] and VERBOSE 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):