summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Hansen <markhansen@google.com>2021-09-19 23:55:45 +0000
committerMark Hansen <markhansen@google.com>2021-09-19 23:55:55 +0000
commit7a94102b79b7e79d566d5f311d2fe136cc5c2b4b (patch)
tree75c1e4314d2197e57d9ed42df3fc72057ab02cdd
parentc57a063a79ee6279bccbf6889f2d85caa6309cd9 (diff)
downloadextras-7a94102b79b7e79d566d5f311d2fe136cc5c2b4b.tar.gz
Import Tuple in simpleperf_utils.py
Fixes a few typechecking errors with mypy. Change-Id: Id29857084ddb8a75f488a08c6fc067b364120613
-rw-r--r--simpleperf/scripts/simpleperf_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/simpleperf/scripts/simpleperf_utils.py b/simpleperf/scripts/simpleperf_utils.py
index 648ddd1b..0d1d05d9 100644
--- a/simpleperf/scripts/simpleperf_utils.py
+++ b/simpleperf/scripts/simpleperf_utils.py
@@ -30,7 +30,7 @@ import shutil
import subprocess
import sys
import time
-from typing import Dict, Iterator, List, Optional, Set, Union
+from typing import Dict, Iterator, List, Optional, Set, Tuple, Union
NDK_ERROR_MESSAGE = "Please install the Android NDK (https://developer.android.com/studio/projects/install-ndk), then set NDK path with --ndk_path option."