From ec50a1184d75c14924d9f2645b9b3eb5a250ac07 Mon Sep 17 00:00:00 2001 From: Nick Coghlan Date: Thu, 23 May 2024 17:12:44 +1000 Subject: [PATCH] Remove unused variable --- test/support/__init__.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/test/support/__init__.py b/test/support/__init__.py index ef58ca4..8bf7693 100644 --- a/test/support/__init__.py +++ b/test/support/__init__.py @@ -16,11 +16,6 @@ cl2_check_traceback_details = (_py_ver >= (3, 10)) # CM protocol checking switched to TypeError in Python 3.11 cl2_cm_api_exc_type = TypeError if (_py_ver >= (3, 11)) else AttributeError -cl2_cm_api_exc_text_legacy = { - "": "has no attribute", - "__enter__": "__enter__", - "__exit__": "__exit__", -} if cl2_cm_api_exc_type is AttributeError: cl2_cm_api_exc_text_sync = { "": "has no attribute",