diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2020-09-09 10:31:52 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-09 10:31:52 -0700 |
commit | 4c2d0eb9bcedefa3ef06a237a0502afbc581268b (patch) | |
tree | 1b08ca5fb0c93573409a7a8954e6e1905f8a5b10 /mesonbuild/scripts/uninstall.py | |
parent | 8d54b7bda30062569c981b50a85a175565a7c15a (diff) | |
parent | 057c77f7d08b3372e99065fb3f3cd37f16801a82 (diff) | |
download | meson-4c2d0eb9bcedefa3ef06a237a0502afbc581268b.zip meson-4c2d0eb9bcedefa3ef06a237a0502afbc581268b.tar.gz meson-4c2d0eb9bcedefa3ef06a237a0502afbc581268b.tar.bz2 |
Merge pull request #7657 from mensinda/moreTyping
typing: Strict type annotations
Diffstat (limited to 'mesonbuild/scripts/uninstall.py')
-rw-r--r-- | mesonbuild/scripts/uninstall.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mesonbuild/scripts/uninstall.py b/mesonbuild/scripts/uninstall.py index bdc036b..b648de4 100644 --- a/mesonbuild/scripts/uninstall.py +++ b/mesonbuild/scripts/uninstall.py @@ -13,10 +13,11 @@ # limitations under the License. import os +import typing as T logfile = 'meson-logs/install-log.txt' -def do_uninstall(log): +def do_uninstall(log: str) -> None: failures = 0 successes = 0 for line in open(log): @@ -38,7 +39,7 @@ def do_uninstall(log): print('Failed:', failures) print('\nRemember that files created by custom scripts have not been removed.') -def run(args): +def run(args: T.List[str]) -> int: if args: print('Weird error.') return 1 |