From c1dd1f7fc4dae5aa807218cf086942f1c9241783 Mon Sep 17 00:00:00 2001 From: Shantanu <12621235+hauntsaninja@users.noreply.github.com> Date: Thu, 5 Sep 2024 06:30:39 -0700 Subject: [PATCH] Remove use of deprecated mypy option (#425) `show_none_errors` is deprecated, see https://github.com/python/mypy/pull/13507 --- mypy.ini | 1 - 1 file changed, 1 deletion(-) diff --git a/mypy.ini b/mypy.ini index f86bab1e..5b201379 100644 --- a/mypy.ini +++ b/mypy.ini @@ -4,7 +4,6 @@ disallow_any_explicit = true disallow_any_unimported = true disallow_subclassing_any = true no_implicit_optional = true -show_none_errors = true warn_no_return = true warn_redundant_casts = true warn_return_any = true