diff options
author | Daniƫl van Noord <13665637+DanielNoord@users.noreply.github.com> | 2021-09-21 13:56:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-21 13:56:58 +0200 |
commit | 1e675abcc2aa931421d7ce300908e734a93fd790 (patch) | |
tree | 9588163cd0c52fe1ffb18f0383d18cf4e0cc6287 /tests/testutils | |
parent | 585c6ca9016613a5c7138ad8cd704a91b363d537 (diff) | |
download | pylint-git-1e675abcc2aa931421d7ce300908e734a93fd790.tar.gz |
Type `add_message` and add `MessageLocationTuple` (#5050)
* Type `add_message` and add `MessageLocationTuple`
Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
Co-authored-by: Marc Mueller <30130371+cdce8p@users.noreply.github.com>
Diffstat (limited to 'tests/testutils')
-rw-r--r-- | tests/testutils/test_output_line.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/testutils/test_output_line.py b/tests/testutils/test_output_line.py index cd8bc7e9b..e4afa9e33 100644 --- a/tests/testutils/test_output_line.py +++ b/tests/testutils/test_output_line.py @@ -19,7 +19,7 @@ def message() -> Callable: return Message( symbol="missing-docstring", msg_id="C0123", - location=[ + location=[ # type: ignore "abspath", "path", "module", |