From c2d8961fe0106255204478c9316a3117aec4b6d6 Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Fri, 31 May 2024 20:29:22 -0500 Subject: [PATCH] mypy(shell): Allow untyped calls I do not think this handled the solution surgically, it seems to force losing safety for the rule across a *whole file* rather than surgically at the offending line. See also: https://github.com/python/mypy/issues/12076, https://github.com/python/mypy/pull/13512 --- src/tmuxp/shell.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/tmuxp/shell.py b/src/tmuxp/shell.py index 39d128dd61..9000779564 100644 --- a/src/tmuxp/shell.py +++ b/src/tmuxp/shell.py @@ -1,3 +1,4 @@ +# mypy: allow-untyped-calls """Utility and helper methods for tmuxp.""" import logging