summaryrefslogtreecommitdiffstats
path: root/rtemsspec/testrunner.py
diff options
context:
space:
mode:
Diffstat (limited to 'rtemsspec/testrunner.py')
-rw-r--r--rtemsspec/testrunner.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/rtemsspec/testrunner.py b/rtemsspec/testrunner.py
index 94bad5a4..63d92e32 100644
--- a/rtemsspec/testrunner.py
+++ b/rtemsspec/testrunner.py
@@ -34,13 +34,13 @@ from subprocess import run as subprocess_run
import tarfile
import time
import threading
-from typing import Any, Dict, List, NamedTuple, Union
+from typing import Any, Dict, List, NamedTuple
from rtemsspec.items import Item, ItemGetValueContext
from rtemsspec.packagebuild import BuildItem, PackageBuildDirector
from rtemsspec.testoutputparser import augment_report
-Report = Dict[str, Union[str, List[str]]]
+Report = Dict[str, Any]
class Executable(NamedTuple):