From 79833fccd036210940f0c2c35b32e27bcda37a82 Mon Sep 17 00:00:00 2001 From: pyth0n1c <87383215+pyth0n1c@users.noreply.github.com> Date: Mon, 1 Nov 2021 18:10:25 -0700 Subject: [PATCH] Fixed how OrderedDict is imported to hopefully fix CSV output format. --- .../ci/detection_testing_batch/detection_testing_execution.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/automated_detection_testing/ci/detection_testing_batch/detection_testing_execution.py b/automated_detection_testing/ci/detection_testing_batch/detection_testing_execution.py index 9a8bdd341b..3b96cc8329 100644 --- a/automated_detection_testing/ci/detection_testing_batch/detection_testing_execution.py +++ b/automated_detection_testing/ci/detection_testing_batch/detection_testing_execution.py @@ -20,8 +20,8 @@ from datetime import timedelta from datetime import datetime import string import shutil -from typing import OrderedDict, Union - +from typing import Union +from collections import OrderedDict from tempfile import mkdtemp import csv