From 58e6bfe6ad06f80c5e3ff61e88a595fca0328325 Mon Sep 17 00:00:00 2001 From: emotion3459 <176516814+emotion3459@users.noreply.github.com> Date: Fri, 14 Feb 2025 02:13:29 -0500 Subject: [PATCH] Remove unused type: ignore --- jetpytools/types/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jetpytools/types/utils.py b/jetpytools/types/utils.py index c59f232..a69d912 100644 --- a/jetpytools/types/utils.py +++ b/jetpytools/types/utils.py @@ -145,7 +145,7 @@ def __get__( @wraps(self.function) def _wrapper(*args: Any, **kwargs: Any) -> Any: first_arg = (args[0] if args else None) or ( - kwargs.get(self.first_key, None) if self.first_key else None # type: ignore + kwargs.get(self.first_key, None) if self.first_key else None ) if (