aboutsummaryrefslogtreecommitdiff
path: root/contrib/devtools/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/devtools/utils.py')
-rwxr-xr-xcontrib/devtools/utils.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/contrib/devtools/utils.py b/contrib/devtools/utils.py
index 68ad1c3aba..8b4c67c6c0 100755
--- a/contrib/devtools/utils.py
+++ b/contrib/devtools/utils.py
@@ -8,10 +8,9 @@ Common utility functions
import shutil
import sys
import os
-from typing import List
-def determine_wellknown_cmd(envvar, progname) -> List[str]:
+def determine_wellknown_cmd(envvar, progname) -> list[str]:
maybe_env = os.getenv(envvar)
maybe_which = shutil.which(progname)
if maybe_env: