diff options
author | Daniel Mensinger <daniel@mensinger-ka.de> | 2021-06-08 12:48:33 +0200 |
---|---|---|
committer | Daniel Mensinger <daniel@mensinger-ka.de> | 2021-06-09 13:25:36 +0200 |
commit | 7fc755b334dd58471dfbf15062aa2ba07a82c8e7 (patch) | |
tree | 605d632e38e96d1c1cc5cabe3c896ee7ca84517a /mesonbuild/mesonmain.py | |
parent | 9c40b33cf6a0425a8452fa34dc7b4101e29d0319 (diff) | |
download | meson-7fc755b334dd58471dfbf15062aa2ba07a82c8e7.zip meson-7fc755b334dd58471dfbf15062aa2ba07a82c8e7.tar.gz meson-7fc755b334dd58471dfbf15062aa2ba07a82c8e7.tar.bz2 |
typing: Fully annotate run_project_tests.py
Diffstat (limited to 'mesonbuild/mesonmain.py')
-rw-r--r-- | mesonbuild/mesonmain.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/mesonmain.py b/mesonbuild/mesonmain.py index 809ccdf..4dd47e4 100644 --- a/mesonbuild/mesonmain.py +++ b/mesonbuild/mesonmain.py @@ -40,7 +40,7 @@ SET # If on Windows and VS is installed but not set up in the environment, # set it to be runnable. In this way Meson can be directly invoked # from any shell, VS Code etc. -def setup_vsenv(): +def setup_vsenv() -> None: import subprocess, json, pathlib if not mesonlib.is_windows(): return |