From 7263ac46946c2885707a801556130335454d405a Mon Sep 17 00:00:00 2001 From: sobolevn Date: Wed, 21 Dec 2022 11:59:42 +0300 Subject: [PATCH] Remove unused variable from `dis._find_imports` --- Lib/dis.py | 1 - 1 file changed, 1 deletion(-) diff --git a/Lib/dis.py b/Lib/dis.py index 523bd01d929565..76104c6098d40c 100644 --- a/Lib/dis.py +++ b/Lib/dis.py @@ -666,7 +666,6 @@ def _find_imports(co): the corresponding args to __import__. """ IMPORT_NAME = opmap['IMPORT_NAME'] - LOAD_CONST = opmap['LOAD_CONST'] consts = co.co_consts names = co.co_names