[CONFORMANCE] Fix Summary (#13358)

This commit is contained in:
Irina Efode 2022-10-07 14:40:05 +04:00 committed by GitHub
parent 36f28e5618
commit cdb486d838
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -270,4 +270,4 @@ def create_summary(summary_root: ET.Element, output_folder: os.path, expected_de
if __name__ == "__main__":
args = parse_arguments()
summary_root = merge_xmls(args.xml)
create_summary(summary_root, args.out, args.expected_devices, args.report_tag, args.report_version, args.conformance_mode, args.csv, args.output_filename)
create_summary(summary_root, args.out, [] if args.expected_devices is None else args.expected_devices, args.report_tag, args.report_version, args.conformance_mode, args.csv, args.output_filename)