Commit 58c965d8 authored by Daniel Latypov's avatar Daniel Latypov Committed by Shuah Khan
Browse files

kunit: tool: remove unnecessary "annotations" import



The import was working around the fact "tuple[T]" was used instead of
typing.Tuple[T].

Convert it to use type.Tuple to be consistent with how the rest of the
code is anotated.

Signed-off-by: default avatarDaniel Latypov <dlatypov@google.com>
Reviewed-by: default avatarDavid Gow <davidgow@google.com>
Reviewed-by: default avatarBrendan Higgins <brendanhiggins@google.com>
Tested-by: default avatarBrendan Higgins <brendanhiggins@google.com>
Signed-off-by: default avatarShuah Khan <skhan@linuxfoundation.org>
parent a72fa630
Loading
Loading
Loading
Loading
+2 −4
Original line number Original line Diff line number Diff line
@@ -6,15 +6,13 @@
# Author: Felix Guo <felixguoxiuping@gmail.com>
# Author: Felix Guo <felixguoxiuping@gmail.com>
# Author: Brendan Higgins <brendanhiggins@google.com>
# Author: Brendan Higgins <brendanhiggins@google.com>


from __future__ import annotations
import importlib.util
import importlib.util
import logging
import logging
import subprocess
import subprocess
import os
import os
import shutil
import shutil
import signal
import signal
from typing import Iterator
from typing import Iterator, Optional, Tuple
from typing import Optional


from contextlib import ExitStack
from contextlib import ExitStack


@@ -208,7 +206,7 @@ def get_source_tree_ops(arch: str, cross_compile: Optional[str]) -> LinuxSourceT
		raise ConfigError(arch + ' is not a valid arch')
		raise ConfigError(arch + ' is not a valid arch')


def get_source_tree_ops_from_qemu_config(config_path: str,
def get_source_tree_ops_from_qemu_config(config_path: str,
					 cross_compile: Optional[str]) -> tuple[
					 cross_compile: Optional[str]) -> Tuple[
							 str, LinuxSourceTreeOperations]:
							 str, LinuxSourceTreeOperations]:
	# The module name/path has very little to do with where the actual file
	# The module name/path has very little to do with where the actual file
	# exists (I learned this through experimentation and could not find it
	# exists (I learned this through experimentation and could not find it