diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2021-09-07 13:30:47 +0200 |
---|---|---|
committer | Xavier Claessens <xclaesse@gmail.com> | 2021-09-07 14:18:58 -0400 |
commit | 516c871beca90caa2a1433579e6450f5a6c65817 (patch) | |
tree | 53ff3301168affe4d531bca9a48096dc966bc33d /mesonbuild/mlog.py | |
parent | af8b55d49b64e72dbefbd40d613b93f56d17b855 (diff) | |
download | meson-516c871beca90caa2a1433579e6450f5a6c65817.zip meson-516c871beca90caa2a1433579e6450f5a6c65817.tar.gz meson-516c871beca90caa2a1433579e6450f5a6c65817.tar.bz2 |
summary: fix dependencies
Dependencies are currently printed as
[<mesonbuild.mlog.AnsiDecorator object at 0x7faa85aeac70>, ' ', <mesonbuild.mlog.AnsiDecorator object at 0x7faa85aeab50>]
This was introduced in commit adb1b2f3f6ad54b346348ec6e5b8d96f2f7ba0a6, due to
an incorrect type annotation on the AnsiText constructor. Fix both the
annotation and the usage.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'mesonbuild/mlog.py')
-rw-r--r-- | mesonbuild/mlog.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/mlog.py b/mesonbuild/mlog.py index 314e1b7..06d8a0b 100644 --- a/mesonbuild/mlog.py +++ b/mesonbuild/mlog.py @@ -22,7 +22,7 @@ from contextlib import contextmanager from pathlib import Path if T.TYPE_CHECKING: - from ._typing import StringProtocol + from ._typing import StringProtocol, SizedStringProtocol """This is (mostly) a standalone module used to write logging information about Meson runs. Some output goes to screen, @@ -143,7 +143,7 @@ TV_Loggable = T.Union[str, AnsiDecorator, 'StringProtocol'] TV_LoggableList = T.List[TV_Loggable] class AnsiText: - def __init__(self, *args: TV_LoggableList): + def __init__(self, *args: 'SizedStringProtocol'): self.args = args def __len__(self) -> int: |