From e263a3087631904aec48c03e11abaedc626f17b8 Mon Sep 17 00:00:00 2001 From: Andreas Motl Date: Tue, 17 Jan 2023 17:26:01 +0100 Subject: [PATCH] Fix mypy configuration by ignoring two files, to satisfy CI mypy raised this error on four occasions: error: "_SupportsAcloseT" has no attribute "__aiter__" (not async iterable) [attr-defined] --- mypy.ini | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/mypy.ini b/mypy.ini index be28fced9..9c395b1cf 100644 --- a/mypy.ini +++ b/mypy.ini @@ -16,3 +16,9 @@ warn_redundant_casts = True warn_return_any = True warn_unused_configs = True warn_unused_ignores = True + +[mypy-prompt_toolkit.buffer] +ignore_errors = True + +[mypy-prompt_toolkit.completion.base] +ignore_errors = True