From a088c976f33b8c85b63636eabbaa85e925f83c57 Mon Sep 17 00:00:00 2001 From: Jelle Zijlstra Date: Thu, 11 Jul 2024 11:50:08 -0700 Subject: [PATCH] remove duplicate --- pyanalyze/value.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/pyanalyze/value.py b/pyanalyze/value.py index 06c0d8ec..442583bc 100644 --- a/pyanalyze/value.py +++ b/pyanalyze/value.py @@ -53,13 +53,7 @@ def function(x: int, y: list[int], z: Any): from pyanalyze.error_code import Error from pyanalyze.extensions import CustomCheck, ExternalType -from .safe import ( - all_of_type, - get_fully_qualified_name, - safe_equals, - safe_isinstance, - safe_issubclass, -) +from .safe import all_of_type, safe_equals, safe_isinstance, safe_issubclass T = TypeVar("T") # __builtin__ in Python 2 and builtins in Python 3