From b5e0da6c089cbd6ec72a2befd9ff8bb895f6ce96 Mon Sep 17 00:00:00 2001 From: Ben Jackson Date: Wed, 2 Dec 2020 20:55:33 +0000 Subject: [PATCH] Remove duplicate InsatllDebubgpy from instaler.py --- python3/vimspector/installer.py | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/python3/vimspector/installer.py b/python3/vimspector/installer.py index 2d8c874..e586d23 100644 --- a/python3/vimspector/installer.py +++ b/python3/vimspector/installer.py @@ -348,18 +348,6 @@ def InstallGeneric( name, root, gadget ): -def InstallDebugpy( name, root, gadget ): - wd = os.getcwd() - root = os.path.join( root, 'debugpy-{}'.format( gadget[ 'version' ] ) ) - os.chdir( root ) - try: - CheckCall( [ sys.executable, 'setup.py', 'build' ] ) - finally: - os.chdir( wd ) - - MakeSymlink( name, root ) - - def InstallGagdet( name: str, gadget: dict, manifest: Manifest,