From 8500e2237ade6283a3a344b6bd6bbf798807c9fa Mon Sep 17 00:00:00 2001 From: David <2889367+daveleroy@users.noreply.github.com> Date: Sat, 1 Apr 2023 03:43:06 -0700 Subject: [PATCH] Put sublime debug adapter behind the development flag for now --- modules/adapters/sublime_debug.py | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/adapters/sublime_debug.py b/modules/adapters/sublime_debug.py index 5602669..7b6a7fd 100644 --- a/modules/adapters/sublime_debug.py +++ b/modules/adapters/sublime_debug.py @@ -73,6 +73,7 @@ class Sublime(dap.AdapterConfiguration): type = 'sublime' docs = 'https://github.com/microsoft/vscode-docs/blob/main/docs/python/debugging.md#python-debug-configurations-in-visual-studio-code' installer = SublimeInstaller() + development = True async def start(self, log: core.Logger, configuration: dap.ConfigurationExpanded): python = configuration.get('pythonPath') or configuration.get('python') or shutil.which('python3') or shutil.which('python')