Index: tools/telemetry/PRESUBMIT.py |
diff --git a/tools/telemetry/PRESUBMIT.py b/tools/telemetry/PRESUBMIT.py |
index 52c88064f54b833c2a7378564f84e2bd4996a23d..c424658976c66c106f89368eced7fd5bafa89b30 100644 |
--- a/tools/telemetry/PRESUBMIT.py |
+++ b/tools/telemetry/PRESUBMIT.py |
@@ -33,7 +33,9 @@ def _CommonChecks(input_api, output_api): |
return results |
def GetPathsToPrepend(input_api): |
- return [input_api.PresubmitLocalPath()] |
+ return [input_api.PresubmitLocalPath(), |
+ os.path.join(input_api.PresubmitLocalPath(), os.path.pardir, |
+ os.path.pardir, 'third_party', 'typ')] |
def RunWithPrependedPath(prepended_path, fn, *args): |
old_path = sys.path |