diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2021-09-24 23:40:52 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-24 23:40:52 +0300 |
commit | fee5cb697c77156f0dec4264ce846dd0d4f84fd5 (patch) | |
tree | 3285c253624f75b104c28e71a0a81ac8caff1cc3 /mesonbuild/mlog.py | |
parent | 68c23a61203fc35dd11c7a0b1cc13f7cc2c5cf8c (diff) | |
parent | 5a69dbe0cb500fe1a2be2e07219b58b1edf443b5 (diff) | |
download | meson-fee5cb697c77156f0dec4264ce846dd0d4f84fd5.zip meson-fee5cb697c77156f0dec4264ce846dd0d4f84fd5.tar.gz meson-fee5cb697c77156f0dec4264ce846dd0d4f84fd5.tar.bz2 |
Merge pull request #9167 from dcbaker/submit/meson-main-type-checking
Add type annotations and type checking to meson main
Diffstat (limited to 'mesonbuild/mlog.py')
-rw-r--r-- | mesonbuild/mlog.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/mlog.py b/mesonbuild/mlog.py index da9e2a5..18cbc48 100644 --- a/mesonbuild/mlog.py +++ b/mesonbuild/mlog.py @@ -293,7 +293,7 @@ def log_once(*args: TV_Loggable, is_error: bool = False, # # This would more accurately embody what this function can handle, but we # don't have that yet, so instead we'll do some casting to work around it -def get_error_location_string(fname: str, lineno: str) -> str: +def get_error_location_string(fname: str, lineno: int) -> str: return f'{fname}:{lineno}:' def _log_error(severity: str, *rargs: TV_Loggable, |