diff options
author | Nikita Sobolev <mail@sobolevn.me> | 2022-12-21 16:55:02 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-21 16:55:02 (GMT) |
commit | e0b4d966a8d1867c4b535b043e08288ca49b3548 (patch) | |
tree | 44cc2efe2953d1754a91ce504c6db8fe074a99dc /Lib/dis.py | |
parent | b98d2d31bffcaeb0c4c8848a8d1b35419c70b2da (diff) | |
download | cpython-e0b4d966a8d1867c4b535b043e08288ca49b3548.zip cpython-e0b4d966a8d1867c4b535b043e08288ca49b3548.tar.gz cpython-e0b4d966a8d1867c4b535b043e08288ca49b3548.tar.bz2 |
Remove unused variable from `dis._find_imports` (#100396)
Diffstat (limited to 'Lib/dis.py')
-rw-r--r-- | Lib/dis.py | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -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 |