From 344b7f695aeb333bd86a56029799ceef122b947d Mon Sep 17 00:00:00 2001 From: Peter LaFosse Date: Tue, 25 Jan 2022 15:37:12 -0500 Subject: Fix TypeBuilder.__repr__ and add unit test --- python/types.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'python/types.py') diff --git a/python/types.py b/python/types.py index 61f959d6..65a9f311 100644 --- a/python/types.py +++ b/python/types.py @@ -538,8 +538,6 @@ class TypeBuilder: return not self.__eq__(other) def __repr__(self): - if self._confidence < core.max_confidence: - return f"" return f"" def __str__(self): -- cgit v1.3.1