diff --git a/Dockerfile b/Dockerfile index a3b852602c64c67484b4b088f43b85406bcbc708..85c3a69907ec5a792e76fd25de880ab7eb00dddd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -31,4 +31,5 @@ WORKDIR $HOME/app COPY --chown=linuxbrew . $HOME/app RUN huggingface-cli login --token=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 -CMD ["code-server", "--auth", "none", "--bind-addr", "0.0.0.0:7860", "--user-data-dir", "code-server"] \ No newline at end of file +RUN echo 'export PATH=/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.local/bin:$PATH' >> $HOME/.bashrc +CMD ["code-server", "--auth", "none", "--bind-addr", "0.0.0.0:7860", "--user-data-dir", "code-server"] diff --git a/code-server/CachedProfilesData/__default__profile__/extensions.user.cache b/code-server/CachedProfilesData/__default__profile__/extensions.user.cache index efcaa479b4fb2d2f83292c1638783e80a7793f20..6b535620392870cb3878583a05945a5ceaa8ba76 100644 --- a/code-server/CachedProfilesData/__default__profile__/extensions.user.cache +++ b/code-server/CachedProfilesData/__default__profile__/extensions.user.cache @@ -1 +1 @@ -{"input":{"location":{"$mid":1,"fsPath":"/home/linuxbrew/app/code-server/extensions/extensions.json","external":"file:///home/linuxbrew/app/code-server/extensions/extensions.json","path":"/home/linuxbrew/app/code-server/extensions/extensions.json","scheme":"file"},"mtime":1695928411000,"profile":true,"profileScanOptions":{"bailOutWhenFileNotFound":true},"type":1,"excludeObsolete":true,"validate":true,"productVersion":"1.82.2","productDate":"2023-09-22T09:29:25.764Z","productCommit":"abd2f3db4bdb28f9e95536dfa84d8479f1eb312d","devMode":false,"language":"en","translations":{}},"result":[{"type":1,"identifier":{"id":"ms-python.python","uuid":"f1f59ae4-9318-4f3c-a9b5-81b2eaa5f8a5"},"manifest":{"name":"python","displayName":"Python","description":"IntelliSense (Pylance), Linting, Debugging (multi-threaded, remote), code formatting, refactoring, unit tests, and more.","version":"2023.16.0","featureFlags":{"usingNewInterpreterStorage":true},"capabilities":{"untrustedWorkspaces":{"supported":"limited","description":"Only Partial IntelliSense with Pylance is supported. Cannot execute Python with untrusted files."},"virtualWorkspaces":{"supported":"limited","description":"Only Partial IntelliSense supported."}},"publisher":"ms-python","enabledApiProposals":["contribEditorContentMenu","quickPickSortByLabel","envShellEvent","testObserver","quickPickItemTooltip","saveEditor"],"author":{"name":"Microsoft Corporation"},"license":"MIT","homepage":"https://github.com/Microsoft/vscode-python","repository":{"type":"git","url":"https://github.com/Microsoft/vscode-python"},"bugs":{"url":"https://github.com/Microsoft/vscode-python/issues"},"qna":"https://github.com/microsoft/vscode-python/discussions/categories/q-a","icon":"icon.png","galleryBanner":{"color":"#1e415e","theme":"dark"},"engines":{"vscode":"^1.82.0-20230830"},"enableTelemetry":false,"keywords":["python","django","unittest","multi-root ready"],"categories":["Programming Languages","Debuggers","Linters","Formatters","Other","Data Science","Machine Learning"],"activationEvents":["onDebugInitialConfigurations","onLanguage:python","onDebugDynamicConfigurations:python","onDebugResolve:python","onWalkthrough:pythonWelcome","onWalkthrough:pythonWelcome2","onWalkthrough:pythonDataScienceWelcome","workspaceContains:mspythonconfig.json","workspaceContains:pyproject.toml","workspaceContains:Pipfile","workspaceContains:setup.py","workspaceContains:requirements.txt","workspaceContains:manage.py","workspaceContains:app.py"],"main":"./out/client/extension","browser":"./dist/extension.browser.js","l10n":"./l10n","contributes":{"walkthroughs":[{"id":"pythonWelcome","title":"Get Started with Python Development","description":"Your first steps to set up a Python project with all the powerful tools and features that the Python extension has to offer!","when":"workspacePlatform != webworker","steps":[{"id":"python.createPythonFile","title":"Create a Python file","description":"[Open](command:toSide:workbench.action.files.openFile) or [create](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22python%22%7D) a Python file - make sure to save it as \".py\".\n[Create Python File](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22python%22%7D)","media":{"svg":"resources/walkthrough/open-folder.svg","altText":"Open a Python file or a folder with a Python project."},"when":""},{"id":"python.installPythonWin8","title":"Install Python","description":"The Python Extension requires Python to be installed. Install Python [from python.org](https://www.python.org/downloads).\n\n[Install Python](https://www.python.org/downloads)\n","media":{"markdown":"resources/walkthrough/install-python-windows-8.md"},"when":"workspacePlatform == windows && showInstallPythonTile"},{"id":"python.installPythonMac","title":"Install Python","description":"The Python Extension requires Python to be installed. Install Python 3 through the terminal.\n[Install Python via Brew](command:python.installPythonOnMac)\n","media":{"markdown":"resources/walkthrough/install-python-macos.md"},"when":"workspacePlatform == mac && showInstallPythonTile","command":"workbench.action.terminal.new"},{"id":"python.installPythonLinux","title":"Install Python","description":"The Python Extension requires Python to be installed. Install Python 3 through the terminal.\n[Install Python via terminal](command:python.installPythonOnLinux)\n","media":{"markdown":"resources/walkthrough/install-python-linux.md"},"when":"workspacePlatform == linux && showInstallPythonTile","command":"workbench.action.terminal.new"},{"id":"python.selectInterpreter","title":"Select a Python Interpreter","description":"Choose which Python interpreter/environment you want to use for your Python project.\n[Select Python Interpreter](command:python.setInterpreter)\n**Tip**: Run the ``Python: Select Interpreter`` command in the [Command Palette](command:workbench.action.showCommands).","media":{"svg":"resources/walkthrough/python-interpreter.svg","altText":"Selecting a Python interpreter from the status bar"},"when":"workspaceFolderCount == 0"},{"id":"python.createEnvironment","title":"Create a Python Environment ","description":"Create an environment for your Python project.\n[Create Environment](command:python.createEnvironment)\n**Tip**: Run the ``Python: Create Environment`` command in the [Command Palette](command:workbench.action.showCommands).\n 🔍 Check out our [docs](https://aka.ms/pythonenvs) to learn more.","media":{"svg":"resources/walkthrough/create-environment.svg","altText":"Creating a Python environment from the Command Palette"},"when":"workspaceFolderCount > 0"},{"id":"python.runAndDebug","title":"Run and debug your Python file","description":"Open your Python file and click on the play button on the top right of the editor, or press F5 when on the file and select \"Python File\" to run with the debugger. \n \n[Learn more](https://code.visualstudio.com/docs/python/python-tutorial#_run-hello-world)","media":{"svg":"resources/walkthrough/rundebug2.svg","altText":"How to run and debug in VS Code with F5 or the play button on the top right."},"when":""},{"id":"python.learnMoreWithDS","title":"Explore more resources","description":"🎨 Explore all the features the Python extension has to offer by looking for \"Python\" in the [Command Palette](command:workbench.action.showCommands). \n 📈 Learn more about getting started with [data science](command:workbench.action.openWalkthrough?%7B%22category%22%3A%22ms-python.python%23pythonDataScienceWelcome%22%2C%22step%22%3A%22ms-python.python%23python.createNewNotebook%22%7D) in Python. \n ✨ Take a look at our [Release Notes](https://aka.ms/AA8dxtb) to learn more about the latest features. \n \n[Learn More](https://aka.ms/AA8dqti)","media":{"altText":"Image representing our documentation page and mailing list resources.","svg":"resources/walkthrough/learnmore.svg"},"when":""}]},{"id":"pythonWelcome2","title":"Get Started with Python Development","description":"Your first steps to set up a Python project with all the powerful tools and features that the Python extension has to offer!","when":"false","steps":[{"id":"python.createPythonFolder","title":"Open a Python project folder","description":"[Open](command:workbench.action.files.openFolder) or create a project folder.\n[Open Project Folder](command:workbench.action.files.openFolder)","media":{"svg":"resources/walkthrough/open-folder.svg","altText":"Open a Python file or a folder with a Python project."},"when":"workspaceFolderCount = 0"},{"id":"python.createPythonFile","title":"Create a Python file","description":"[Open](command:toSide:workbench.action.files.openFile) or [create](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22python%22%7D) a Python file - make sure to save it as \".py\".\n[Create Python File](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22python%22%7D)","media":{"svg":"resources/walkthrough/open-folder.svg","altText":"Open a Python file or a folder with a Python project."},"when":""},{"id":"python.installPythonWin8","title":"Install Python","description":"The Python Extension requires Python to be installed. Install Python [from python.org](https://www.python.org/downloads).\n\n[Install Python](https://www.python.org/downloads)\n","media":{"markdown":"resources/walkthrough/install-python-windows-8.md"},"when":"workspacePlatform == windows && showInstallPythonTile"},{"id":"python.installPythonMac","title":"Install Python","description":"The Python Extension requires Python to be installed. Install Python 3 through the terminal.\n[Install Python via Brew](command:python.installPythonOnMac)\n","media":{"markdown":"resources/walkthrough/install-python-macos.md"},"when":"workspacePlatform == mac && showInstallPythonTile","command":"workbench.action.terminal.new"},{"id":"python.installPythonLinux","title":"Install Python","description":"The Python Extension requires Python to be installed. Install Python 3 through the terminal.\n[Install Python via terminal](command:python.installPythonOnLinux)\n","media":{"markdown":"resources/walkthrough/install-python-linux.md"},"when":"workspacePlatform == linux && showInstallPythonTile","command":"workbench.action.terminal.new"},{"id":"python.createEnvironment2","title":"Create or select a Python Environment ","description":"Create an environment for your Python project or use [Select Python Interpreter](command:python.setInterpreter) to select an existing one.\n[Create Environment](command:python.createEnvironment)\n**Tip**: Run the ``Python: Create Environment`` command in the [Command Palette](command:workbench.action.showCommands).","media":{"markdown":"resources/walkthrough/environments-info.md"},"when":""},{"id":"python.runAndDebug","title":"Run and debug your Python file","description":"Open your Python file and click on the play button on the top right of the editor, or press F5 when on the file and select \"Python File\" to run with the debugger. \n \n[Learn more](https://code.visualstudio.com/docs/python/python-tutorial#_run-hello-world)","media":{"svg":"resources/walkthrough/rundebug2.svg","altText":"How to run and debug in VS Code with F5 or the play button on the top right."},"when":""},{"id":"python.learnMoreWithDS2","title":"Explore more resources","description":"🎨 Explore all the features the Python extension has to offer by looking for \"Python\" in the [Command Palette](command:workbench.action.showCommands). \n 📈 Learn more about getting started with [data science](command:workbench.action.openWalkthrough?%7B%22category%22%3A%22ms-python.python%23pythonDataScienceWelcome%22%2C%22step%22%3A%22ms-python.python%23python.createNewNotebook%22%7D) in Python. \n ✨ Take a look at our [Release Notes](https://aka.ms/AA8dxtb) to learn more about the latest features. \n \n[Follow along with the Python Tutorial](https://aka.ms/AA8dqti)","media":{"altText":"Image representing our documentation page and mailing list resources.","svg":"resources/walkthrough/learnmore.svg"},"when":""}]},{"id":"pythonDataScienceWelcome","title":"Get Started with Python for Data Science","description":"Your first steps to getting started with a Data Science project with Python!","when":"false","steps":[{"id":"python.installJupyterExt","title":"Install Jupyter extension","description":"If you haven't already, install the [Jupyter extension](command:workbench.extensions.search?\"ms-toolsai.jupyter\") to take full advantage of notebooks experiences in VS Code!\n \n[Search Jupyter extension](command:workbench.extensions.search?\"ms-toolsai.jupyter\")","media":{"svg":"resources/walkthrough/data-science.svg","altText":"Creating a new Jupyter notebook"}},{"id":"python.createNewNotebook","title":"Create or open a Jupyter Notebook","description":"Right click in the file explorer and create a new file with an .ipynb extension. Or, open the [Command Palette](command:workbench.action.showCommands) and run the command \n``Jupyter: Create New Blank Notebook``.\n[Create new Jupyter Notebook](command:toSide:jupyter.createnewnotebook)\n If you have an existing project, you can also [open a folder](command:workbench.action.files.openFolder) and/or clone a project from GitHub: [clone a Git repository](command:git.clone).","media":{"svg":"resources/walkthrough/create-notebook.svg","altText":"Creating a new Jupyter notebook"},"completionEvents":["onCommand:jupyter.createnewnotebook","onCommand:workbench.action.files.openFolder","onCommand:workbench.action.files.openFileFolder"]},{"id":"python.openInteractiveWindow","title":"Open the Python Interactive Window","description":"The Python Interactive Window is a Python shell where you can execute and view the results of your Python code. You can create cells on a Python file by typing ``#%%``.\n \nTo open the interactive window anytime, open the [Command Palette](command:workbench.action.showCommands) and run the command \n``Jupyter: Create Interactive Window``.\n[Open Interactive Window](command:jupyter.createnewinteractive)","media":{"svg":"resources/walkthrough/interactive-window.svg","altText":"Opening Python interactive window"},"completionEvents":["onCommand:jupyter.createnewinteractive"]},{"id":"python.dataScienceLearnMore","title":"Find out more!","description":"📒 Take a look into the [Jupyter extension](command:workbench.extensions.search?\"ms-toolsai.jupyter\") features, by looking for \"Jupyter\" in the [Command Palette](command:workbench.action.showCommands). \n 🏃🏻 Find out more features in our [Tutorials](https://aka.ms/AAdjzpd). \n[Learn more](https://aka.ms/AAdar6q)","media":{"svg":"resources/walkthrough/learnmore.svg","altText":"Image representing our documentation page and mailing list resources."}}]}],"breakpoints":[{"language":"html"},{"language":"jinja"},{"language":"python"},{"language":"django-html"},{"language":"django-txt"}],"commands":[{"title":"New Python File","shortTitle":"Python File","category":"Python","command":"python.createNewFile"},{"category":"Python","command":"python.analysis.restartLanguageServer","title":"Restart Language Server"},{"category":"Python","command":"python.clearCacheAndReload","title":"Clear Cache and Reload Window"},{"category":"Python","command":"python.clearWorkspaceInterpreter","title":"Clear Workspace Interpreter Setting"},{"category":"Python","command":"python.configureTests","title":"Configure Tests"},{"category":"Python","command":"python.createTerminal","title":"Create Terminal"},{"category":"Python","command":"python.createEnvironment","title":"Create Environment..."},{"category":"Python","command":"python.createEnvironment-button","title":"Create Environment..."},{"category":"Python","command":"python.enableLinting","title":"Enable/Disable Linting"},{"category":"Python","command":"python.enableSourceMapSupport","title":"Enable Source Map Support For Extension Debugging"},{"category":"Python","command":"python.execInTerminal","title":"Run Python File in Terminal"},{"category":"Python","command":"python.execInTerminal-icon","icon":"$(play)","title":"Run Python File"},{"category":"Python","command":"python.execInDedicatedTerminal","icon":"$(play)","title":"Run Python File in Dedicated Terminal"},{"category":"Python","command":"python.debugInTerminal","icon":"$(debug-alt)","title":"Debug Python File"},{"category":"Python","command":"python.execSelectionInDjangoShell","title":"Run Selection/Line in Django Shell"},{"category":"Python","command":"python.execSelectionInTerminal","title":"Run Selection/Line in Python Terminal"},{"category":"Python","command":"python.launchTensorBoard","title":"Launch TensorBoard"},{"category":"Python","command":"python.refreshTensorBoard","enablement":"python.hasActiveTensorBoardSession","icon":"$(refresh)","title":"Refresh TensorBoard"},{"category":"Python","command":"python.reportIssue","title":"Report Issue..."},{"category":"Test","command":"testing.reRunFailTests","icon":"$(run-errors)","title":"Rerun Failed Tests"},{"category":"Python","command":"python.runLinting","title":"Run Linting"},{"category":"Python","command":"python.setInterpreter","title":"Select Interpreter"},{"category":"Python","command":"python.setLinter","title":"Select Linter"},{"category":"Python Refactor","command":"python.sortImports","title":"Sort Imports"},{"category":"Python","command":"python.startREPL","title":"Start REPL"},{"category":"Python","command":"python.viewLanguageServerOutput","enablement":"python.hasLanguageServerOutputChannel","title":"Show Language Server Output"},{"category":"Python","command":"python.viewOutput","icon":{"dark":"resources/dark/repl.svg","light":"resources/light/repl.svg"},"title":"Show Output"},{"category":"Python","command":"python.installJupyter","title":"Install the Jupyter extension"}],"configuration":{"properties":{"python.activeStateToolPath":{"default":"state","description":"Path to the State Tool executable for ActiveState runtimes (version 0.36+).","scope":"machine-overridable","type":"string"},"python.autoComplete.extraPaths":{"default":[],"description":"List of paths to libraries and the like that need to be imported by auto complete engine. E.g. when using Google App SDK, the paths are not in system path, hence need to be added into this list.","scope":"resource","type":"array","uniqueItems":true},"python.createEnvironment.contentButton":{"default":"show","markdownDescription":"Show or hide Create Environment button in the editor for `requirements.txt` or other dependency files.","scope":"machine-overridable","type":"string","enum":["show","hide"],"tags":["experimental"]},"python.condaPath":{"default":"","description":"Path to the conda executable to use for activation (version 4.4+).","scope":"machine","type":"string"},"python.defaultInterpreterPath":{"default":"python","markdownDescription":"Path to default Python to use when extension loads up for the first time, no longer used once an interpreter is selected for the workspace. See [here](https://aka.ms/AAfekmf) to understand when this is used","scope":"machine-overridable","type":"string"},"python.diagnostics.sourceMapsEnabled":{"default":false,"description":"Enable source map support for meaningful stack traces in error logs.","scope":"application","type":"boolean"},"python.envFile":{"default":"${workspaceFolder}/.env","description":"Absolute path to a file containing environment variable definitions.","scope":"resource","type":"string"},"python.experiments.enabled":{"default":true,"description":"Enables A/B tests experiments in the Python extension. If enabled, you may get included in proposed enhancements and/or features.","scope":"machine","type":"boolean"},"python.experiments.optInto":{"default":[],"markdownDescription":"List of experiment to opt into. If empty, user is assigned the default experiment groups. See [here](https://github.com/microsoft/vscode-python/wiki/AB-Experiments) for more details.","items":{"enum":["All","pythonSurveyNotification","pythonPromptNewToolsExt","pythonTerminalEnvVarActivation","pythonTestAdapter"],"enumDescriptions":["Combined list of all experiments.","Denotes the Python Survey Notification experiment.","Denotes the Python Prompt New Tools Extension experiment.","Enables use of environment variables to activate terminals instead of sending activation commands.","Denotes the Python Test Adapter experiment."]},"scope":"machine","type":"array","uniqueItems":true},"python.experiments.optOutFrom":{"default":[],"markdownDescription":"List of experiment to opt out of. If empty, user is assigned the default experiment groups. See [here](https://github.com/microsoft/vscode-python/wiki/AB-Experiments) for more details.","items":{"enum":["All","pythonSurveyNotification","pythonPromptNewToolsExt","pythonTerminalEnvVarActivation","pythonTestAdapter"],"enumDescriptions":["Combined list of all experiments.","Denotes the Python Survey Notification experiment.","Denotes the Python Prompt New Tools Extension experiment.","Enables use of environment variables to activate terminals instead of sending activation commands.","Denotes the Python Test Adapter experiment."]},"scope":"machine","type":"array","uniqueItems":true},"python.formatting.autopep8Args":{"default":[],"description":"Arguments passed in. Each argument is a separate item in the array.","items":{"type":"string"},"scope":"resource","type":"array","markdownDeprecationMessage":"This setting will soon be deprecated. Please use the [Autopep8 extension](https://marketplace.visualstudio.com/items?itemName=ms-python.autopep8).
Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"This setting will soon be deprecated. Please use the Autopep8 extension. Learn more here: https://aka.ms/AAlgvkb."},"python.formatting.autopep8Path":{"default":"autopep8","description":"Path to autopep8, you can use a custom version of autopep8 by modifying this setting to include the full path.","scope":"machine-overridable","type":"string","markdownDeprecationMessage":"This setting will soon be deprecated. Please use the [Autopep8 extension](https://marketplace.visualstudio.com/items?itemName=ms-python.autopep8).
Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"This setting will soon be deprecated. Please use the Autopep8 extension. Learn more here: https://aka.ms/AAlgvkb."},"python.formatting.blackArgs":{"default":[],"description":"Arguments passed in. Each argument is a separate item in the array.","items":{"type":"string"},"scope":"resource","type":"array","markdownDeprecationMessage":"This setting will soon be deprecated. Please use the [Black Formatter extension](https://marketplace.visualstudio.com/items?itemName=ms-python.black-formatter).
Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"This setting will soon be deprecated. Please use the Black Formatter extension. Learn more here: https://aka.ms/AAlgvkb."},"python.formatting.blackPath":{"default":"black","description":"Path to Black, you can use a custom version of Black by modifying this setting to include the full path.","scope":"machine-overridable","type":"string","markdownDeprecationMessage":"This setting will soon be deprecated. Please use the [Black Formatter extension](https://marketplace.visualstudio.com/items?itemName=ms-python.black-formatter).
Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"This setting will soon be deprecated. Please use the Black Formatter extension. Learn more here: https://aka.ms/AAlgvkb."},"python.formatting.provider":{"default":"autopep8","description":"Provider for formatting. Possible options include 'autopep8', 'black', and 'yapf'.","enum":["autopep8","black","none","yapf"],"scope":"resource","type":"string","markdownDeprecationMessage":"This setting will soon be deprecated. Please use the [Autopep8 extension](https://marketplace.visualstudio.com/items?itemName=ms-python.autopep8) or the [Black Formatter extension](https://marketplace.visualstudio.com/items?itemName=ms-python.black-formatter).
Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"This setting will soon be deprecated. Please use the Autopep8 extension or the Black Formatter extension. Learn more here: https://aka.ms/AAlgvkb."},"python.formatting.yapfArgs":{"default":[],"description":"Arguments passed in. Each argument is a separate item in the array.","items":{"type":"string"},"scope":"resource","type":"array","markdownDeprecationMessage":"Yapf support will soon be deprecated. Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"Yapf support will soon be deprecated. Learn more here: https://aka.ms/AAlgvkb."},"python.formatting.yapfPath":{"default":"yapf","description":"Path to yapf, you can use a custom version of yapf by modifying this setting to include the full path.","scope":"machine-overridable","type":"string","markdownDeprecationMessage":"Yapf support will soon be deprecated.
Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"Yapf support will soon be deprecated. Learn more here: https://aka.ms/AAlgvkb."},"python.globalModuleInstallation":{"default":false,"description":"Whether to install Python modules globally when not using an environment.","scope":"resource","type":"boolean"},"python.languageServer":{"default":"Default","description":"Defines type of the language server.","enum":["Default","Jedi","Pylance","None"],"enumDescriptions":["Automatically select a language server: Pylance if installed and available, otherwise fallback to Jedi.","Use Jedi behind the Language Server Protocol (LSP) as a language server.","Use Pylance as a language server.","Disable language server capabilities."],"scope":"window","type":"string"},"python.linting.banditArgs":{"default":[],"description":"Arguments passed in. Each argument is a separate item in the array.","items":{"type":"string"},"scope":"resource","type":"array","markdownDeprecationMessage":"Bandit support will soon be deprecated. Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"Bandit support will soon be deprecated. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.banditEnabled":{"default":false,"description":"Whether to lint Python files using bandit.","scope":"resource","type":"boolean","markdownDeprecationMessage":"Bandit support will soon be deprecated. Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"Bandit support will soon be deprecated. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.banditPath":{"default":"bandit","description":"Path to bandit, you can use a custom version of bandit by modifying this setting to include the full path.","scope":"machine-overridable","type":"string","markdownDeprecationMessage":"Bandit support will soon be deprecated. Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"Bandit support will soon be deprecated. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.cwd":{"default":null,"description":"Optional working directory for linters.","scope":"resource","type":"string","markdownDeprecationMessage":"This setting will soon be deprecated. Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"This setting will soon be deprecated. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.enabled":{"default":true,"description":"Whether to lint Python files.","scope":"resource","type":"boolean","markdownDeprecationMessage":"This setting will soon be deprecated. Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"This setting will soon be deprecated. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.flake8Args":{"default":[],"description":"Arguments passed in. Each argument is a separate item in the array.","items":{"type":"string"},"scope":"resource","type":"array","markdownDeprecationMessage":"This setting will soon be deprecated. Please use the [Flake8 extension](https://marketplace.visualstudio.com/items?itemName=ms-python.flake8).
Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"This setting will soon be deprecated. Please use the Flake8 extension. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.flake8CategorySeverity.E":{"default":"Error","description":"Severity of Flake8 message type 'E'.","enum":["Error","Hint","Information","Warning"],"scope":"resource","type":"string","markdownDeprecationMessage":"This setting will soon be deprecated. Please use the [Flake8 extension](https://marketplace.visualstudio.com/items?itemName=ms-python.flake8).
Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"This setting will soon be deprecated. Please use the Flake8 extension. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.flake8CategorySeverity.F":{"default":"Error","description":"Severity of Flake8 message type 'F'.","enum":["Error","Hint","Information","Warning"],"scope":"resource","type":"string","markdownDeprecationMessage":"This setting will soon be deprecated. Please use the [Flake8 extension](https://marketplace.visualstudio.com/items?itemName=ms-python.flake8).
Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"This setting will soon be deprecated. Please use the Flake8 extension. Learn more here: https://aka.ms/AAlgvkb."},"python.interpreter.infoVisibility":{"default":"onPythonRelated","description":"Controls when to display information of selected interpreter in the status bar.","enum":["never","onPythonRelated","always"],"enumDescriptions":["Never display information.","Only display information if Python-related files are opened.","Always display information."],"scope":"machine","type":"string"},"python.linting.flake8CategorySeverity.W":{"default":"Warning","description":"Severity of Flake8 message type 'W'.","enum":["Error","Hint","Information","Warning"],"scope":"resource","type":"string","markdownDeprecationMessage":"This setting will soon be deprecated. Please use the [Flake8 extension](https://marketplace.visualstudio.com/items?itemName=ms-python.flake8).
Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"This setting will soon be deprecated. Please use the Flake8 extension. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.flake8Enabled":{"default":false,"description":"Whether to lint Python files using flake8.","scope":"resource","type":"boolean","markdownDeprecationMessage":"This setting will soon be deprecated. Please use the [Flake8 extension](https://marketplace.visualstudio.com/items?itemName=ms-python.flake8).
Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"This setting will soon be deprecated. Please use the Flake8 extension. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.flake8Path":{"default":"flake8","description":"Path to flake8, you can use a custom version of flake8 by modifying this setting to include the full path.","scope":"machine-overridable","type":"string","markdownDeprecationMessage":"This setting will soon be deprecated. Please use the [Flake8 extension](https://marketplace.visualstudio.com/items?itemName=ms-python.flake8).
Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"This setting will soon be deprecated. Please use the Flake8 extension. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.ignorePatterns":{"default":["**/site-packages/**/*.py",".vscode/*.py"],"description":"Patterns used to exclude files or folders from being linted.","items":{"type":"string"},"scope":"resource","type":"array","uniqueItems":true,"markdownDeprecationMessage":"This setting will soon be deprecated. Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"This setting will soon be deprecated. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.lintOnSave":{"default":true,"description":"Whether to lint Python files when saved.","scope":"resource","type":"boolean","markdownDeprecationMessage":"This setting will soon be deprecated. Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"This setting will soon be deprecated. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.maxNumberOfProblems":{"default":100,"description":"Controls the maximum number of problems produced by the server.","scope":"resource","type":"number","markdownDeprecationMessage":"This setting will soon be deprecated. Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"This setting will soon be deprecated. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.mypyArgs":{"default":["--follow-imports=silent","--ignore-missing-imports","--show-column-numbers","--no-pretty"],"description":"Arguments passed in. Each argument is a separate item in the array.","items":{"type":"string"},"scope":"resource","type":"array","markdownDeprecationMessage":"This setting will soon be deprecated. Please use the [Mypy Type Checker extension](https://marketplace.visualstudio.com/items?itemName=ms-python.mypy-type-checker).
Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"This setting will soon be deprecated. Please use the Mypy Type Checker extension. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.mypyCategorySeverity.error":{"default":"Error","description":"Severity of Mypy message type 'Error'.","enum":["Error","Hint","Information","Warning"],"scope":"resource","type":"string","markdownDeprecationMessage":"This setting will soon be deprecated. Please use the [Mypy Type Checker extension](https://marketplace.visualstudio.com/items?itemName=ms-python.mypy-type-checker).
Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"This setting will soon be deprecated. Please use the Mypy Type Checker extension. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.mypyCategorySeverity.note":{"default":"Information","description":"Severity of Mypy message type 'Note'.","enum":["Error","Hint","Information","Warning"],"scope":"resource","type":"string","markdownDeprecationMessage":"This setting will soon be deprecated. Please use the [Mypy Type Checker extension](https://marketplace.visualstudio.com/items?itemName=ms-python.mypy-type-checker).
Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"This setting will soon be deprecated. Please use the Mypy Type Checker extension. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.mypyEnabled":{"default":false,"description":"Whether to lint Python files using mypy.","scope":"resource","type":"boolean","markdownDeprecationMessage":"This setting will soon be deprecated. Please use the [Mypy Type Checker extension](https://marketplace.visualstudio.com/items?itemName=ms-python.mypy-type-checker).
Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"This setting will soon be deprecated. Please use the Mypy Type Checker extension. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.mypyPath":{"default":"mypy","description":"Path to mypy, you can use a custom version of mypy by modifying this setting to include the full path.","scope":"machine-overridable","type":"string","markdownDeprecationMessage":"This setting will soon be deprecated. Please use the [Mypy Type Checker extension](https://marketplace.visualstudio.com/items?itemName=ms-python.mypy-type-checker).
Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"This setting will soon be deprecated. Please use the Mypy Type Checker extension. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.prospectorArgs":{"default":[],"description":"Arguments passed in. Each argument is a separate item in the array.","items":{"type":"string"},"scope":"resource","type":"array","markdownDeprecationMessage":"Prospector support will soon be deprecated. Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"Prospector support will soon be deprecated. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.prospectorEnabled":{"default":false,"description":"Whether to lint Python files using prospector.","scope":"resource","type":"boolean","markdownDeprecationMessage":"Prospector support will soon be deprecated. Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"Prospector support will soon be deprecated. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.prospectorPath":{"default":"prospector","description":"Path to Prospector, you can use a custom version of prospector by modifying this setting to include the full path.","scope":"machine-overridable","type":"string","markdownDeprecationMessage":"Prospector support will soon be deprecated. Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"Prospector support will soon be deprecated. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.pycodestyleArgs":{"default":[],"description":"Arguments passed in. Each argument is a separate item in the array.","items":{"type":"string"},"scope":"resource","type":"array","markdownDeprecationMessage":"Pycodestyle support will soon be deprecated. Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"Pycodestyle support will soon be deprecated. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.pycodestyleCategorySeverity.E":{"default":"Error","description":"Severity of pycodestyle message type 'E'.","enum":["Error","Hint","Information","Warning"],"scope":"resource","type":"string","markdownDeprecationMessage":"Pycodestyle support will soon be deprecated. Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"Pycodestyle support will soon be deprecated. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.pycodestyleCategorySeverity.W":{"default":"Warning","description":"Severity of pycodestyle message type 'W'.","enum":["Error","Hint","Information","Warning"],"scope":"resource","type":"string","markdownDeprecationMessage":"Pycodestyle support will soon be deprecated. Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"Pycodestyle support will soon be deprecated. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.pycodestyleEnabled":{"default":false,"description":"Whether to lint Python files using pycodestyle.","scope":"resource","type":"boolean","markdownDeprecationMessage":"Pycodestyle support will soon be deprecated. Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"Pycodestyle support will soon be deprecated. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.pycodestylePath":{"default":"pycodestyle","description":"Path to pycodestyle, you can use a custom version of pycodestyle by modifying this setting to include the full path.","scope":"machine-overridable","type":"string","markdownDeprecationMessage":"Pycodestyle support will soon be deprecated. Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"Pycodestyle support will soon be deprecated. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.pydocstyleArgs":{"default":[],"description":"Arguments passed in. Each argument is a separate item in the array.","items":{"type":"string"},"scope":"resource","type":"array","markdownDeprecationMessage":"Pydocstyle support will soon be deprecated. Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"Pydocstyle support will soon be deprecated. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.pydocstyleEnabled":{"default":false,"description":"Whether to lint Python files using pydocstyle.","scope":"resource","type":"boolean","markdownDeprecationMessage":"Pydocstyle support will soon be deprecated. Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"Pydocstyle support will soon be deprecated. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.pydocstylePath":{"default":"pydocstyle","description":"Path to pydocstyle, you can use a custom version of pydocstyle by modifying this setting to include the full path.","scope":"machine-overridable","type":"string","markdownDeprecationMessage":"Pydocstyle support will soon be deprecated. Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"Pydocstyle support will soon be deprecated. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.pylamaArgs":{"default":[],"description":"Arguments passed in. Each argument is a separate item in the array.","items":{"type":"string"},"scope":"resource","type":"array","markdownDeprecationMessage":"Pylama support will soon be deprecated. Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"Pylama support will soon be deprecated. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.pylamaEnabled":{"default":false,"description":"Whether to lint Python files using pylama.","scope":"resource","type":"boolean","markdownDeprecationMessage":"Pylama support will soon be deprecated. Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"Pylama support will soon be deprecated. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.pylamaPath":{"default":"pylama","description":"Path to pylama, you can use a custom version of pylama by modifying this setting to include the full path.","scope":"machine-overridable","type":"string","markdownDeprecationMessage":"Pylama support will soon be deprecated. Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"Pylama support will soon be deprecated. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.pylintArgs":{"default":[],"description":"Arguments passed in. Each argument is a separate item in the array.","items":{"type":"string"},"scope":"resource","type":"array","markdownDeprecationMessage":"This setting will soon be deprecated. Please use the [Pylint extension](https://marketplace.visualstudio.com/items?itemName=ms-python.pylint).
Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"This setting will soon be deprecated. Please use the Pylint extension. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.pylintCategorySeverity.convention":{"default":"Information","description":"Severity of Pylint message type 'Convention/C'.","enum":["Error","Hint","Information","Warning"],"scope":"resource","type":"string","markdownDeprecationMessage":"This setting will soon be deprecated. Please use the [Pylint extension](https://marketplace.visualstudio.com/items?itemName=ms-python.pylint).
Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"This setting will soon be deprecated. Please use the Pylint extension. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.pylintCategorySeverity.error":{"default":"Error","description":"Severity of Pylint message type 'Error/E'.","enum":["Error","Hint","Information","Warning"],"scope":"resource","type":"string","markdownDeprecationMessage":"This setting will soon be deprecated. Please use the [Pylint extension](https://marketplace.visualstudio.com/items?itemName=ms-python.pylint).
Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"This setting will soon be deprecated. Please use the Pylint extension. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.pylintCategorySeverity.fatal":{"default":"Error","description":"Severity of Pylint message type 'Error/F'.","enum":["Error","Hint","Information","Warning"],"scope":"resource","type":"string","markdownDeprecationMessage":"This setting will soon be deprecated. Please use the [Pylint extension](https://marketplace.visualstudio.com/items?itemName=ms-python.pylint).
Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"This setting will soon be deprecated. Please use the Pylint extension. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.pylintCategorySeverity.refactor":{"default":"Hint","description":"Severity of Pylint message type 'Refactor/R'.","enum":["Error","Hint","Information","Warning"],"scope":"resource","type":"string","markdownDeprecationMessage":"This setting will soon be deprecated. Please use the [Pylint extension](https://marketplace.visualstudio.com/items?itemName=ms-python.pylint).
Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"This setting will soon be deprecated. Please use the Pylint extension. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.pylintCategorySeverity.warning":{"default":"Warning","description":"Severity of Pylint message type 'Warning/W'.","enum":["Error","Hint","Information","Warning"],"scope":"resource","type":"string","markdownDeprecationMessage":"This setting will soon be deprecated. Please use the [Pylint extension](https://marketplace.visualstudio.com/items?itemName=ms-python.pylint).
Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"This setting will soon be deprecated. Please use the Pylint extension. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.pylintEnabled":{"default":false,"description":"Whether to lint Python files using pylint.","scope":"resource","type":"boolean","markdownDeprecationMessage":"This setting will soon be deprecated. Please use the [Pylint extension](https://marketplace.visualstudio.com/items?itemName=ms-python.pylint).
Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"This setting will soon be deprecated. Please use the Pylint extension. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.pylintPath":{"default":"pylint","description":"Path to Pylint, you can use a custom version of pylint by modifying this setting to include the full path.","scope":"machine-overridable","type":"string","markdownDeprecationMessage":"This setting will soon be deprecated. Please use the [Pylint extension](https://marketplace.visualstudio.com/items?itemName=ms-python.pylint).
Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"This setting will soon be deprecated. Please use the Pylint extension. Learn more here: https://aka.ms/AAlgvkb."},"python.logging.level":{"default":"error","deprecationMessage":"This setting is deprecated. Please use command `Developer: Set Log Level...` to set logging level.","description":"The logging level the extension logs at, defaults to 'error'","enum":["debug","error","info","off","warn"],"scope":"machine","type":"string"},"python.missingPackage.severity":{"default":"Hint","description":"Set severity of missing packages in requirements.txt or pyproject.toml","enum":["Error","Hint","Information","Warning"],"scope":"resource","type":"string","tags":["experimental"]},"python.pipenvPath":{"default":"pipenv","description":"Path to the pipenv executable to use for activation.","scope":"machine-overridable","type":"string"},"python.poetryPath":{"default":"poetry","description":"Path to the poetry executable.","scope":"machine-overridable","type":"string"},"python.sortImports.args":{"default":[],"description":"Arguments passed in. Each argument is a separate item in the array.","items":{"type":"string"},"scope":"resource","type":"array","deprecationMessage":"This setting will be removed soon. Use 'isort.args' instead."},"python.sortImports.path":{"default":"","description":"Path to isort script, default using inner version","scope":"machine-overridable","type":"string","deprecationMessage":"This setting will be removed soon. Use 'isort.path' instead."},"python.tensorBoard.logDirectory":{"default":"","description":"Set this setting to your preferred TensorBoard log directory to skip log directory prompt when starting TensorBoard.","scope":"resource","type":"string"},"python.terminal.activateEnvInCurrentTerminal":{"default":false,"description":"Activate Python Environment in the current Terminal on load of the Extension.","scope":"resource","type":"boolean"},"python.terminal.activateEnvironment":{"default":true,"description":"Activate Python Environment in all Terminals created.","scope":"resource","type":"boolean"},"python.terminal.executeInFileDir":{"default":false,"description":"When executing a file in the terminal, whether to use execute in the file's directory, instead of the current open folder.","scope":"resource","type":"boolean"},"python.terminal.focusAfterLaunch":{"default":false,"description":"When launching a python terminal, whether to focus the cursor on the terminal.","scope":"resource","type":"boolean"},"python.terminal.launchArgs":{"default":[],"description":"Python launch arguments to use when executing a file in the terminal.","scope":"resource","type":"array"},"python.testing.autoTestDiscoverOnSaveEnabled":{"default":true,"description":"Enable auto run test discovery when saving a test file.","scope":"resource","type":"boolean"},"python.testing.cwd":{"default":null,"description":"Optional working directory for tests.","scope":"resource","type":"string"},"python.testing.debugPort":{"default":3000,"description":"Port number used for debugging of tests.","scope":"resource","type":"number"},"python.testing.promptToConfigure":{"default":true,"description":"Prompt to configure a test framework if potential tests directories are discovered.","scope":"resource","type":"boolean"},"python.testing.pytestArgs":{"default":[],"description":"Arguments passed in. Each argument is a separate item in the array.","items":{"type":"string"},"scope":"resource","type":"array"},"python.testing.pytestEnabled":{"default":false,"description":"Enable testing using pytest.","scope":"resource","type":"boolean"},"python.testing.pytestPath":{"default":"pytest","description":"Path to pytest (pytest), you can use a custom version of pytest by modifying this setting to include the full path.","scope":"machine-overridable","type":"string"},"python.testing.unittestArgs":{"default":["-v","-s",".","-p","*test*.py"],"description":"Arguments passed in. Each argument is a separate item in the array.","items":{"type":"string"},"scope":"resource","type":"array"},"python.testing.unittestEnabled":{"default":false,"description":"Enable testing using unittest.","scope":"resource","type":"boolean"},"python.venvFolders":{"default":[],"description":"Folders in your home directory to look into for virtual environments (supports pyenv, direnv and virtualenvwrapper by default).","items":{"type":"string"},"scope":"machine","type":"array","uniqueItems":true},"python.venvPath":{"default":"","description":"Path to folder with a list of Virtual Environments (e.g. ~/.pyenv, ~/Envs, ~/.virtualenvs).","scope":"machine","type":"string"}},"title":"Python","type":"object"},"debuggers":[{"configurationAttributes":{"attach":{"properties":{"connect":{"label":"Attach by connecting to debugpy over a socket.","properties":{"host":{"default":"127.0.0.1","description":"Hostname or IP address to connect to.","type":"string"},"port":{"description":"Port to connect to.","type":"number"}},"required":["port"],"type":"object"},"debugAdapterPath":{"description":"Path (fully qualified) to the python debug adapter executable.","type":"string"},"django":{"default":false,"description":"Django debugging.","type":"boolean"},"host":{"default":"127.0.0.1","description":"Hostname or IP address to connect to.","type":"string"},"jinja":{"default":null,"description":"Jinja template debugging (e.g. Flask).","enum":[false,null,true]},"justMyCode":{"default":true,"description":"If true, show and debug only user-written code. If false, show and debug all code, including library calls.","type":"boolean"},"listen":{"label":"Attach by listening for incoming socket connection from debugpy","properties":{"host":{"default":"127.0.0.1","description":"Hostname or IP address of the interface to listen on.","type":"string"},"port":{"description":"Port to listen on.","type":"number"}},"required":["port"],"type":"object"},"logToFile":{"default":false,"description":"Enable logging of debugger events to a log file.","type":"boolean"},"pathMappings":{"default":[],"items":{"label":"Path mapping","properties":{"localRoot":{"default":"${workspaceFolder}","label":"Local source root.","type":"string"},"remoteRoot":{"default":"","label":"Remote source root.","type":"string"}},"required":["localRoot","remoteRoot"],"type":"object"},"label":"Path mappings.","type":"array"},"port":{"description":"Port to connect to.","type":"number"},"processId":{"anyOf":[{"default":"${command:pickProcess}","description":"Use process picker to select a process to attach, or Process ID as integer.","enum":["${command:pickProcess}"]},{"description":"ID of the local process to attach to.","type":"integer"}]},"redirectOutput":{"default":true,"description":"Redirect output.","type":"boolean"},"showReturnValue":{"default":true,"description":"Show return value of functions when stepping.","type":"boolean"},"subProcess":{"default":false,"description":"Whether to enable Sub Process debugging","type":"boolean"}}},"launch":{"properties":{"args":{"default":[],"description":"Command line arguments passed to the program.","items":{"type":"string"},"type":["array","string"]},"autoReload":{"default":{},"description":"Configures automatic reload of code on edit.","properties":{"enable":{"default":false,"description":"Automatically reload code on edit.","type":"boolean"},"exclude":{"default":["**/.git/**","**/.metadata/**","**/__pycache__/**","**/node_modules/**","**/site-packages/**"],"description":"Glob patterns of paths to exclude from auto reload.","items":{"type":"string"},"type":"array"},"include":{"default":["**/*.py","**/*.pyw"],"description":"Glob patterns of paths to include in auto reload.","items":{"type":"string"},"type":"array"}},"type":"object"},"console":{"default":"integratedTerminal","description":"Where to launch the debug target: internal console, integrated terminal, or external terminal.","enum":["externalTerminal","integratedTerminal","internalConsole"]},"cwd":{"default":"${workspaceFolder}","description":"Absolute path to the working directory of the program being debugged. Default is the root directory of the file (leave empty).","type":"string"},"debugAdapterPath":{"description":"Path (fully qualified) to the python debug adapter executable.","type":"string"},"django":{"default":false,"description":"Django debugging.","type":"boolean"},"env":{"additionalProperties":{"type":"string"},"default":{},"description":"Environment variables defined as a key value pair. Property ends up being the Environment Variable and the value of the property ends up being the value of the Env Variable.","type":"object"},"envFile":{"default":"${workspaceFolder}/.env","description":"Absolute path to a file containing environment variable definitions.","type":"string"},"gevent":{"default":false,"description":"Enable debugging of gevent monkey-patched code.","type":"boolean"},"host":{"default":"localhost","description":"IP address of the of the local debug server (default is localhost).","type":"string"},"jinja":{"default":null,"description":"Jinja template debugging (e.g. Flask).","enum":[false,null,true]},"justMyCode":{"default":true,"description":"Debug only user-written code.","type":"boolean"},"logToFile":{"default":false,"description":"Enable logging of debugger events to a log file.","type":"boolean"},"module":{"default":"","description":"Name of the module to be debugged.","type":"string"},"pathMappings":{"default":[],"items":{"label":"Path mapping","properties":{"localRoot":{"default":"${workspaceFolder}","label":"Local source root.","type":"string"},"remoteRoot":{"default":"","label":"Remote source root.","type":"string"}},"required":["localRoot","remoteRoot"],"type":"object"},"label":"Path mappings.","type":"array"},"port":{"default":0,"description":"Debug port (default is 0, resulting in the use of a dynamic port).","type":"number"},"program":{"default":"${file}","description":"Absolute path to the program.","type":"string"},"purpose":{"default":[],"description":"Tells extension to use this configuration for test debugging, or when using debug-in-terminal command.","items":{"enum":["debug-test","debug-in-terminal"],"enumDescriptions":["Use this configuration while debugging tests using test view or test debug commands.","Use this configuration while debugging a file using debug in terminal button in the editor."]},"type":"array"},"pyramid":{"default":false,"description":"Whether debugging Pyramid applications","type":"boolean"},"python":{"default":"${command:python.interpreterPath}","description":"Absolute path to the Python interpreter executable; overrides workspace configuration if set.","type":"string"},"pythonArgs":{"default":[],"description":"Command-line arguments passed to the Python interpreter. To pass arguments to the debug target, use \"args\".","items":{"type":"string"},"type":"array"},"redirectOutput":{"default":true,"description":"Redirect output.","type":"boolean"},"showReturnValue":{"default":true,"description":"Show return value of functions when stepping.","type":"boolean"},"stopOnEntry":{"default":false,"description":"Automatically stop after launch.","type":"boolean"},"subProcess":{"default":false,"description":"Whether to enable Sub Process debugging","type":"boolean"},"sudo":{"default":false,"description":"Running debug program under elevated permissions (on Unix).","type":"boolean"}}}},"configurationSnippets":[],"label":"Python","languages":["python"],"type":"python","variables":{"pickProcess":"python.pickLocalProcess"},"when":"!virtualWorkspace && shellExecutionSupported"}],"grammars":[{"language":"pip-requirements","path":"./syntaxes/pip-requirements.tmLanguage.json","scopeName":"source.pip-requirements"}],"jsonValidation":[{"fileMatch":".condarc","url":"./schemas/condarc.json"},{"fileMatch":"environment.yml","url":"./schemas/conda-environment.json"},{"fileMatch":"meta.yaml","url":"./schemas/conda-meta.json"}],"keybindings":[{"command":"python.execSelectionInTerminal","key":"shift+enter","when":"editorTextFocus && editorLangId == python && !findInputFocussed && !replaceInputFocussed && !jupyter.ownsSelection && !notebookEditorFocused"},{"command":"python.refreshTensorBoard","key":"ctrl+r","mac":"cmd+r","when":"python.hasActiveTensorBoardSession"}],"languages":[{"aliases":["Jinja"],"extensions":[".j2",".jinja2"],"id":"jinja"},{"aliases":["pip requirements","requirements.txt"],"configuration":"./languages/pip-requirements.json","filenamePatterns":["**/*requirements*.{txt, in}","**/*constraints*.txt","**/requirements/*.{txt,in}","**/constraints/*.txt"],"filenames":["constraints.txt","requirements.in","requirements.txt"],"id":"pip-requirements"},{"filenames":[".condarc"],"id":"yaml"},{"filenames":[".flake8",".pep8",".pylintrc",".pypirc"],"id":"ini"},{"filenames":["Pipfile","poetry.lock"],"id":"toml"},{"filenames":["Pipfile.lock"],"id":"json"}],"menus":{"commandPalette":[{"category":"Python","command":"python.analysis.restartLanguageServer","title":"Restart Language Server","when":"!virtualWorkspace && shellExecutionSupported && editorLangId == python"},{"category":"Python","command":"python.clearCacheAndReload","title":"Clear Cache and Reload Window","when":"!virtualWorkspace && shellExecutionSupported"},{"category":"Python","command":"python.clearWorkspaceInterpreter","title":"Clear Workspace Interpreter Setting","when":"!virtualWorkspace && shellExecutionSupported"},{"category":"Python","command":"python.configureTests","title":"Configure Tests","when":"!virtualWorkspace && shellExecutionSupported"},{"category":"Python","command":"python.createEnvironment","title":"Create Environment...","when":"!virtualWorkspace && shellExecutionSupported"},{"category":"Python","command":"python.createEnvironment-button","title":"Create Environment...","when":"false"},{"category":"Python","command":"python.createTerminal","title":"Create Terminal","when":"!virtualWorkspace && shellExecutionSupported"},{"category":"Python","command":"python.enableLinting","title":"Enable/Disable Linting","when":"!virtualWorkspace && shellExecutionSupported && editorLangId == python"},{"category":"Python","command":"python.enableSourceMapSupport","title":"Enable Source Map Support For Extension Debugging","when":"!virtualWorkspace && shellExecutionSupported"},{"category":"Python","command":"python.execInTerminal","title":"Run Python File in Terminal","when":"!virtualWorkspace && shellExecutionSupported && editorLangId == python"},{"category":"Python","command":"python.execInTerminal-icon","icon":"$(play)","title":"Run Python File","when":"false"},{"category":"Python","command":"python.execInDedicatedTerminal","icon":"$(play)","title":"Run Python File in Dedicated Terminal","when":"false"},{"category":"Python","command":"python.debugInTerminal","icon":"$(debug-alt)","title":"Debug Python File","when":"!virtualWorkspace && shellExecutionSupported && editorLangId == python"},{"category":"Python","command":"python.execSelectionInDjangoShell","title":"Run Selection/Line in Django Shell","when":"!virtualWorkspace && shellExecutionSupported && editorLangId == python"},{"category":"Python","command":"python.execSelectionInTerminal","title":"Run Selection/Line in Python Terminal","when":"!virtualWorkspace && shellExecutionSupported && editorLangId == python"},{"category":"Python","command":"python.launchTensorBoard","title":"Launch TensorBoard","when":"!virtualWorkspace && shellExecutionSupported"},{"category":"Python","command":"python.refreshTensorBoard","enablement":"python.hasActiveTensorBoardSession","icon":"$(refresh)","title":"Refresh TensorBoard","when":"!virtualWorkspace && shellExecutionSupported"},{"category":"Python","command":"python.reportIssue","title":"Report Issue...","when":"!virtualWorkspace && shellExecutionSupported"},{"category":"Test","command":"testing.reRunFailTests","icon":"$(run-errors)","title":"Rerun Failed Tests","when":"!virtualWorkspace && shellExecutionSupported"},{"category":"Python","command":"python.runLinting","title":"Run Linting","when":"!virtualWorkspace && shellExecutionSupported && editorLangId == python"},{"category":"Python","command":"python.setInterpreter","title":"Select Interpreter","when":"!virtualWorkspace && shellExecutionSupported"},{"category":"Python","command":"python.setLinter","title":"Select Linter","when":"!virtualWorkspace && shellExecutionSupported && editorLangId == python"},{"category":"Python Refactor","command":"python.sortImports","title":"Sort Imports","when":"!virtualWorkspace && shellExecutionSupported && editorLangId == python"},{"category":"Python","command":"python.startREPL","title":"Start REPL","when":"!virtualWorkspace && shellExecutionSupported"},{"category":"Python","command":"python.viewLanguageServerOutput","enablement":"python.hasLanguageServerOutputChannel","title":"Show Language Server Output","when":"!virtualWorkspace && shellExecutionSupported"},{"category":"Python","command":"python.viewOutput","title":"Show Output","when":"!virtualWorkspace && shellExecutionSupported"}],"editor/content":[{"group":"Python","command":"python.createEnvironment-button","when":"showCreateEnvButton && resourceLangId == pip-requirements && !virtualWorkspace && shellExecutionSupported && !inDiffEditor && !isMergeResultEditor && pythonDepsNotInstalled"},{"group":"Python","command":"python.createEnvironment-button","when":"showCreateEnvButton && resourceFilename == pyproject.toml && pipInstallableToml && !virtualWorkspace && shellExecutionSupported && !inDiffEditor && !isMergeResultEditor && pythonDepsNotInstalled"}],"editor/context":[{"submenu":"python.run","group":"Python","when":"editorLangId == python && !virtualWorkspace && shellExecutionSupported && isWorkspaceTrusted"},{"command":"python.sortImports","group":"Refactor","title":"Sort Imports","when":"editorLangId == python && !notebookEditorFocused && !virtualWorkspace && shellExecutionSupported"},{"submenu":"python.runFileInteractive","group":"Jupyter2","when":"editorLangId == python && !virtualWorkspace && shellExecutionSupported && !isJupyterInstalled && isWorkspaceTrusted"}],"python.runFileInteractive":[{"command":"python.installJupyter","group":"Jupyter2","when":"resourceLangId == python && !virtualWorkspace && shellExecutionSupported"}],"python.run":[{"command":"python.execInTerminal","group":"Python","when":"resourceLangId == python && !virtualWorkspace && shellExecutionSupported"},{"command":"python.execSelectionInDjangoShell","group":"Python","when":"editorHasSelection && editorLangId == python && python.isDjangoProject && !virtualWorkspace && shellExecutionSupported"},{"command":"python.execSelectionInTerminal","group":"Python","when":"editorFocus && editorLangId == python && !virtualWorkspace && shellExecutionSupported"}],"editor/title":[{"command":"python.refreshTensorBoard","group":"navigation@0","when":"python.hasActiveTensorBoardSession && !virtualWorkspace && shellExecutionSupported"}],"editor/title/run":[{"command":"python.execInTerminal-icon","group":"navigation@0","title":"Run Python File","when":"resourceLangId == python && !isInDiffEditor && !virtualWorkspace && shellExecutionSupported"},{"command":"python.execInDedicatedTerminal","group":"navigation@0","title":"Run Python File in Dedicated Terminal","when":"resourceLangId == python && !isInDiffEditor && !virtualWorkspace && shellExecutionSupported"},{"command":"python.debugInTerminal","group":"navigation@1","title":"Debug Python File","when":"resourceLangId == python && !isInDiffEditor && !virtualWorkspace && shellExecutionSupported"}],"explorer/context":[{"command":"python.execInTerminal","group":"Python","when":"resourceLangId == python && !virtualWorkspace && shellExecutionSupported"}],"file/newFile":[{"command":"python.createNewFile","group":"file","when":"!virtualWorkspace"}],"view/title":[{"command":"testing.reRunFailTests","when":"view == workbench.view.testing && hasFailedTests && !virtualWorkspace && shellExecutionSupported","group":"navigation@1"}]},"submenus":[{"id":"python.run","label":"Run Python","icon":"$(play)"},{"id":"python.runFileInteractive","label":"Run in Interactive window"}],"viewsWelcome":[{"view":"testing","contents":"Configure a test framework to see your tests here.\n[Configure Python Tests](command:python.configureTests)","when":"!virtualWorkspace && shellExecutionSupported"}],"yamlValidation":[{"fileMatch":".condarc","url":"./schemas/condarc.json"},{"fileMatch":"environment.yml","url":"./schemas/conda-environment.json"},{"fileMatch":"meta.yaml","url":"./schemas/conda-meta.json"}]},"scripts":{"package":"gulp clean && gulp prePublishBundle && vsce package -o ms-python-insiders.vsix","prePublish":"gulp clean && gulp prePublishNonBundle","compile":"tsc -watch -p ./","compiled":"deemon npm run compile","kill-compiled":"deemon --kill npm run compile","checkDependencies":"gulp checkDependencies","test":"node ./out/test/standardTest.js && node ./out/test/multiRootTest.js","test:unittests":"mocha --config ./build/.mocha.unittests.json","test:unittests:cover":"nyc --no-clean --nycrc-path ./build/.nycrc mocha --config ./build/.mocha.unittests.json","test:functional":"mocha --require source-map-support/register --config ./build/.mocha.functional.json","test:functional:perf":"node --inspect-brk ./node_modules/mocha/bin/_mocha --require source-map-support/register --config ./build/.mocha.functional.perf.json","test:functional:memleak":"node --inspect-brk ./node_modules/mocha/bin/_mocha --require source-map-support/register --config ./build/.mocha.functional.json","test:functional:cover":"nyc --no-clean --nycrc-path ./build/.nycrc mocha --require source-map-support/register --config ./build/.mocha.functional.json","test:cover:report":"nyc --nycrc-path ./build/.nycrc report --reporter=text --reporter=html --reporter=text-summary --reporter=cobertura","testDebugger":"node ./out/test/testBootstrap.js ./out/test/debuggerTest.js","testDebugger:cover":"nyc --no-clean --use-spawn-wrap --nycrc-path ./build/.nycrc --require source-map-support/register node ./out/test/debuggerTest.js","testSingleWorkspace":"node ./out/test/testBootstrap.js ./out/test/standardTest.js","testSingleWorkspace:cover":"nyc --no-clean --use-spawn-wrap --nycrc-path ./build/.nycrc --require source-map-support/register node ./out/test/standardTest.js","preTestJediLSP":"node ./out/test/languageServers/jedi/lspSetup.js","testJediLSP":"node ./out/test/languageServers/jedi/lspSetup.js && cross-env CODE_TESTS_WORKSPACE=src/test VSC_PYTHON_CI_TEST_GREP='Language Server:' node ./out/test/testBootstrap.js ./out/test/standardTest.js && node ./out/test/languageServers/jedi/lspTeardown.js","testMultiWorkspace":"node ./out/test/testBootstrap.js ./out/test/multiRootTest.js","testPerformance":"node ./out/test/testBootstrap.js ./out/test/performanceTest.js","testSmoke":"cross-env INSTALL_JUPYTER_EXTENSION=true \"node ./out/test/smokeTest.js\"","testInsiders":"cross-env VSC_PYTHON_CI_TEST_VSC_CHANNEL=insiders INSTALL_PYLANCE_EXTENSION=true TEST_FILES_SUFFIX=insiders.test CODE_TESTS_WORKSPACE=src/testMultiRootWkspc/smokeTests \"node ./out/test/standardTest.js\"","lint-staged":"node gulpfile.js","lint":"eslint --ext .ts,.js src build pythonExtensionApi","lint-fix":"eslint --fix --ext .ts,.js src build pythonExtensionApi gulpfile.js","format-check":"prettier --check 'src/**/*.ts' 'build/**/*.js' '.github/**/*.yml' gulpfile.js","format-fix":"prettier --write 'src/**/*.ts' 'build/**/*.js' '.github/**/*.yml' gulpfile.js","clean":"gulp clean","addExtensionPackDependencies":"gulp addExtensionPackDependencies","updateBuildNumber":"gulp updateBuildNumber","verifyBundle":"gulp verifyBundle","webpack":"webpack"},"dependencies":{"@iarna/toml":"^2.2.5","@vscode/extension-telemetry":"^0.7.7","@vscode/jupyter-lsp-middleware":"^0.2.50","arch":"^2.1.0","diff-match-patch":"^1.0.0","fs-extra":"^10.0.1","glob":"^7.2.0","hash.js":"^1.1.7","iconv-lite":"^0.6.3","inversify":"^5.0.4","jsonc-parser":"^3.0.0","lodash":"^4.17.21","md5":"^2.2.1","minimatch":"^5.0.1","named-js-regexp":"^1.3.3","node-stream-zip":"^1.6.0","reflect-metadata":"^0.1.12","rxjs":"^6.5.4","rxjs-compat":"^6.5.4","semver":"^7.5.2","stack-trace":"0.0.10","sudo-prompt":"^9.2.1","tmp":"^0.0.33","uint64be":"^3.0.0","unicode":"^14.0.0","untildify":"^4.0.0","vscode-debugadapter":"^1.28.0","vscode-debugprotocol":"^1.28.0","vscode-jsonrpc":"8.0.2-next.1","vscode-languageclient":"^8.1.0","vscode-languageserver":"^8.1.0","vscode-languageserver-protocol":"^3.17.3","vscode-tas-client":"^0.1.63","which":"^2.0.2","winreg":"^1.2.4","xml2js":"^0.5.0"},"devDependencies":{"@istanbuljs/nyc-config-typescript":"^1.0.2","@types/bent":"^7.3.0","@types/chai":"^4.1.2","@types/chai-arrays":"^2.0.0","@types/chai-as-promised":"^7.1.0","@types/diff-match-patch":"^1.0.32","@types/download":"^8.0.1","@types/fs-extra":"^9.0.13","@types/glob":"^7.2.0","@types/lodash":"^4.14.104","@types/md5":"^2.1.32","@types/mocha":"^9.1.0","@types/nock":"^10.0.3","@types/node":"^16.17.0","@types/semver":"^5.5.0","@types/shortid":"^0.0.29","@types/sinon":"^10.0.11","@types/stack-trace":"0.0.29","@types/tmp":"^0.0.33","@types/uuid":"^8.3.4","@types/vscode":"^1.81.0","@types/which":"^2.0.1","@types/winreg":"^1.2.30","@types/xml2js":"^0.4.2","@typescript-eslint/eslint-plugin":"^3.7.0","@typescript-eslint/parser":"^3.7.0","@vscode/test-electron":"^2.1.3","@vscode/vsce":"^2.18.0","bent":"^7.3.12","chai":"^4.1.2","chai-arrays":"^2.0.0","chai-as-promised":"^7.1.1","copy-webpack-plugin":"^9.1.0","cross-spawn":"^6.0.5","del":"^6.0.0","download":"^8.0.0","es5-ext":"0.10.53","eslint":"^7.2.0","eslint-config-airbnb":"^18.2.0","eslint-config-prettier":"^8.3.0","eslint-plugin-import":"^2.25.4","eslint-plugin-jsx-a11y":"^6.3.1","eslint-plugin-react":"^7.20.3","eslint-plugin-react-hooks":"^4.0.0","expose-loader":"^3.1.0","flat":"^5.0.2","get-port":"^5.1.1","gulp":"^4.0.0","gulp-typescript":"^5.0.0","mocha":"^9.2.2","mocha-junit-reporter":"^2.0.2","mocha-multi-reporters":"^1.1.7","nock":"^10.0.6","node-has-native-dependencies":"^1.0.2","node-loader":"^1.0.2","node-polyfill-webpack-plugin":"^1.1.4","nyc":"^15.0.0","prettier":"^2.0.2","rewiremock":"^3.13.0","rimraf":"^3.0.2","shortid":"^2.2.8","sinon":"^13.0.1","source-map-support":"^0.5.12","ts-loader":"^9.2.8","ts-mockito":"^2.5.0","ts-node":"^10.7.0","tsconfig-paths-webpack-plugin":"^3.2.0","typemoq":"^2.1.0","typescript":"4.5.5","uuid":"^8.3.2","vscode-debugadapter-testsupport":"^1.27.0","webpack":"^5.76.0","webpack-bundle-analyzer":"^4.5.0","webpack-cli":"^4.9.2","webpack-fix-default-import-plugin":"^1.0.3","webpack-merge":"^5.8.0","webpack-node-externals":"^3.0.0","webpack-require-from":"^1.8.6","yargs":"^15.3.1"},"extensionPack":["ms-python.vscode-pylance"]},"location":{"$mid":1,"path":"/home/linuxbrew/app/code-server/extensions/ms-python.python-2023.16.0-universal","scheme":"file"},"isBuiltin":false,"targetPlatform":"universal","metadata":{"id":"f1f59ae4-9318-4f3c-a9b5-81b2eaa5f8a5","publisherId":"998b010b-e2af-44a5-a6cd-0b5fd3b9b6f8","publisherDisplayName":"ms-python","targetPlatform":"universal","updated":false,"isPreReleaseVersion":false,"installedTimestamp":1695869191474,"preRelease":false},"isValid":true,"validations":[]},{"type":1,"identifier":{"id":"ms-toolsai.jupyter-keymap","uuid":"9f6dc8db-620c-4844-b8c5-e74914f1be27"},"manifest":{"name":"jupyter-keymap","publisher":"ms-toolsai","author":{"name":"Microsoft Corporation"},"license":"MIT","icon":"icon.png","galleryBanner":{"color":"#ffffff","theme":"light"},"displayName":"Jupyter Keymap","description":"Jupyter keymaps for notebooks","version":"1.1.2","engines":{"vscode":"^1.79.0-insider"},"repository":{"type":"git","url":"https://github.com/Microsoft/vscode-jupyter-keymap"},"bugs":{"url":"https://github.com/Microsoft/vscode-jupyter-keymap/issues"},"categories":["Notebooks"],"keywords":["notebook-keymap"],"contributes":{"keybindings":[{"key":"F","when":"notebookEditorFocused && !inputFocus && !notebookOutputInputFocused","command":"notebook.find"},{"key":"K","when":"notebookEditorFocused && !inputFocus && !notebookOutputInputFocused","command":"list.focusUp"},{"key":"J","when":"notebookEditorFocused && !inputFocus && !notebookOutputInputFocused","command":"list.focusDown"},{"key":"A","when":"notebookEditorFocused && !inputFocus && !notebookOutputInputFocused","command":"notebook.cell.insertCodeCellAboveAndFocusContainer"},{"key":"B","when":"notebookEditorFocused && !inputFocus && !notebookOutputInputFocused","command":"notebook.cell.insertCodeCellBelowAndFocusContainer"},{"key":"D D","when":"notebookEditorFocused && !inputFocus && !notebookOutputInputFocused","command":"notebook.cell.delete"},{"key":"Z","when":"notebookEditorFocused && !inputFocus && !notebookOutputInputFocused","command":"undo"},{"key":"S","when":"notebookEditorFocused && !inputFocus && !notebookOutputInputFocused","command":"workbench.action.files.save"},{"key":"C","when":"notebookEditorFocused && !inputFocus && !notebookOutputInputFocused","command":"notebook.cell.copy"},{"key":"X","when":"notebookEditorFocused && !inputFocus && !notebookOutputInputFocused","command":"notebook.cell.cut"},{"key":"V","when":"notebookEditorFocused && !inputFocus && !notebookOutputInputFocused","command":"notebook.cell.paste"},{"key":"shift+L","when":"notebookEditorFocused && !inputFocus && !notebookOutputInputFocused","command":"notebook.toggleLineNumbers"},{"key":"O","when":"notebookEditorFocused && !inputFocus && !notebookOutputInputFocused","command":"notebook.cell.toggleOutputs"},{"key":"L","when":"notebookEditorFocused && !inputFocus && !notebookOutputInputFocused","command":"notebook.cell.toggleLineNumbers"},{"key":"ctrl+shift+-","when":"editorTextFocus && inputFocus && notebookEditorFocused && !notebookOutputInputFocused","command":"notebook.cell.split"},{"key":"ctrl+enter","when":"editorTextFocus && inputFocus && notebookEditorFocused || notebookCellListFocused","command":"notebook.cell.executeAndFocusContainer"},{"key":"shift+enter","when":"editorTextFocus && inputFocus && notebookEditorFocused && !interactiveEditorFocused || notebookCellListFocused && notebookCellType == 'code' && !interactiveEditorFocused","command":"notebook.cell.executeAndSelectBelow"},{"win":"ctrl+alt+enter","linux":"ctrl+alt+enter","when":"interactiveEditorHasProvider && interactiveEditorVisible && !interactiveEditorDocumentChanged || interactiveEditorHasProvider && interactiveEditorVisible && config.interactiveEditor.editMode != 'preview'","command":"interactive.acceptChanges"}]}},"location":{"$mid":1,"path":"/home/linuxbrew/app/code-server/extensions/ms-toolsai.jupyter-keymap-1.1.2-universal","scheme":"file"},"isBuiltin":false,"targetPlatform":"universal","metadata":{"id":"9f6dc8db-620c-4844-b8c5-e74914f1be27","publisherId":"ac8eb7c9-3e59-4b39-8040-f0484d8170ce","publisherDisplayName":"ms-toolsai","targetPlatform":"universal","updated":false,"isPreReleaseVersion":false,"installedTimestamp":1695869201385,"preRelease":false},"isValid":true,"validations":[]},{"type":1,"identifier":{"id":"ms-toolsai.vscode-jupyter-cell-tags","uuid":"ab4fb32a-befb-4102-adf9-1652d0cd6a5e"},"manifest":{"name":"vscode-jupyter-cell-tags","displayName":"Jupyter Cell Tags","description":"Jupyter Cell Tags support for VS Code","version":"0.1.8","publisher":"ms-toolsai","preview":true,"icon":"icon.png","galleryBanner":{"color":"#ffffff","theme":"light"},"author":{"name":"Microsoft Corporation"},"engines":{"vscode":"^1.72.0"},"categories":["Notebooks"],"activationEvents":["onNotebook:jupyter-notebook","onCommand:jupyter-cell-tags.removeTag","onCommand:jupyter-cell-tags.addTag","onCommand:jupyter-cell-tags.editTagsInJSON","onCommand:jupyter-cell-tags.paramaterize"],"repository":{"type":"git","url":"https://github.com/Microsoft/vscode-jupyter-cell-tags"},"main":"./out/extension-node.js","browser":"./out/extension-web.js","contributes":{"commands":[{"command":"jupyter-cell-tags.removeTag","title":"Remove Cell Tag","icon":"$(close)"},{"command":"jupyter-cell-tags.addTag","title":"Add Cell Tag","icon":"$(add)"},{"command":"jupyter-cell-tags.editTagsInJSON","title":"Edit Cell Tags (JSON)","icon":"$(go-to-file)"},{"command":"jupyter-cell-tags.paramaterize","title":"Mark Cell as Parameters"}],"menus":{"notebook/cell/title":[{"command":"jupyter-cell-tags.addTag","group":"jupytercelltags@1"},{"command":"jupyter-cell-tags.editTagsInJSON","group":"jupytercelltags@2"},{"command":"jupyter-cell-tags.paramaterize","group":"jupytercelltags@2"}],"view/title":[{"command":"jupyter-cell-tags.addTag","when":"view == cell-tag","group":"navigation"},{"command":"jupyter-cell-tags.editTagsInJSON","when":"view == cell-tag","group":"navigation"}],"view/item/context":[{"command":"jupyter-cell-tags.removeTag","when":"view == cell-tag","group":"inline"}]},"views":{"jupyter-variables":[{"id":"cell-tag","name":"Cell Tags","type":"tree","icon":"$(tag)","when":"jupyter:showTagsExplorer && jupyter.hasNativeNotebookOrInteractiveWindowOpen","visibility":"collapsed"}]},"viewsWelcome":[{"view":"cell-tag","contents":"No tags found for the selected cell. Use the [Add Cell Tag](command:jupyter-cell-tags.addTag) command to add tags."}]},"scripts":{"vscode:prepublish":"npm run compile","compile":"webpack --mode none","watch":"webpack --mode none --watch","pretest":"npm run compile && npm run lint","lint":"eslint src --ext ts","test":"node ./out/test/runTest.js"},"devDependencies":{"@types/vscode":"^1.72.0","@types/glob":"^7.1.3","@types/mocha":"^8.2.2","@types/node":"14.x","eslint":"^7.27.0","@typescript-eslint/eslint-plugin":"^4.26.0","@typescript-eslint/parser":"^4.26.0","glob":"^7.1.7","mocha":"^10.0.0","typescript":"^4.3.2","vscode-test":"^1.5.2","ts-loader":"^9.1.1","webpack":"^5.36.2","webpack-cli":"^4.6.0"}},"location":{"$mid":1,"path":"/home/linuxbrew/app/code-server/extensions/ms-toolsai.vscode-jupyter-cell-tags-0.1.8-universal","scheme":"file"},"isBuiltin":false,"targetPlatform":"universal","metadata":{"id":"ab4fb32a-befb-4102-adf9-1652d0cd6a5e","publisherId":"ac8eb7c9-3e59-4b39-8040-f0484d8170ce","publisherDisplayName":"ms-toolsai","targetPlatform":"universal","updated":false,"isPreReleaseVersion":false,"installedTimestamp":1695869201395,"preRelease":false},"isValid":true,"validations":[]},{"type":1,"identifier":{"id":"ms-toolsai.vscode-jupyter-slideshow","uuid":"e153ca70-b543-4865-b4c5-b31d34185948"},"manifest":{"name":"vscode-jupyter-slideshow","displayName":"Jupyter Slide Show","description":"Jupyter Slide Show support for VS Code","version":"0.1.5","publisher":"ms-toolsai","preview":true,"icon":"icon.png","galleryBanner":{"color":"#ffffff","theme":"light"},"author":{"name":"Microsoft Corporation"},"engines":{"vscode":"^1.71.0"},"categories":["Notebooks"],"activationEvents":["onNotebook:jupyter-notebook","onCommand:jupyter-slideshow.switchSlideType","onCommand:jupyter-slideshow.editSlideShowInJSON"],"repository":{"type":"git","url":"https://github.com/Microsoft/vscode-jupyter-slideshow"},"main":"./out/extension-node.js","browser":"./out/extension-web.js","contributes":{"commands":[{"command":"jupyter-slideshow.switchSlideType","title":"Switch Slide Type"},{"command":"jupyter-slideshow.editSlideShowInJSON","title":"Edit Slide Type (JSON)","icon":"$(go-to-file)"}],"menus":{"notebook/cell/title":[{"command":"jupyter-slideshow.switchSlideType","group":"jupyter-slideshow@1"},{"command":"jupyter-slideshow.editSlideShowInJSON","group":"jupyter-slideshow@2"}]}},"scripts":{"vscode:prepublish":"npm run compile","compile":"webpack --mode none","watch":"webpack --mode none --watch","pretest":"npm run compile && npm run lint","lint":"eslint src --ext ts","test":"node ./out/test/runTest.js"},"devDependencies":{"@types/vscode":"^1.71.0","@types/glob":"^7.1.3","@types/mocha":"^8.2.2","@types/node":"14.x","eslint":"^7.27.0","@typescript-eslint/eslint-plugin":"^4.26.0","@typescript-eslint/parser":"^4.26.0","glob":"^7.1.7","mocha":"^10.0.0","typescript":"^4.3.2","vscode-test":"^1.5.2","ts-loader":"^9.1.1","webpack":"^5.36.2","webpack-cli":"^4.6.0"}},"location":{"$mid":1,"path":"/home/linuxbrew/app/code-server/extensions/ms-toolsai.vscode-jupyter-slideshow-0.1.5-universal","scheme":"file"},"isBuiltin":false,"targetPlatform":"universal","metadata":{"id":"e153ca70-b543-4865-b4c5-b31d34185948","publisherId":"ac8eb7c9-3e59-4b39-8040-f0484d8170ce","publisherDisplayName":"ms-toolsai","targetPlatform":"universal","updated":false,"isPreReleaseVersion":false,"installedTimestamp":1695869201403,"preRelease":false},"isValid":true,"validations":[]},{"type":1,"identifier":{"id":"ms-toolsai.jupyter-renderers","uuid":"b15c72f8-d5fe-421a-a4f7-27ed9f6addbf"},"manifest":{"name":"jupyter-renderers","displayName":"Jupyter Notebook Renderers","description":"Renderers for Jupyter Notebooks (with plotly, vega, gif, png, svg, jpeg and other such outputs)","version":"1.0.17","engines":{"vscode":"^1.80.0"},"publisher":"ms-toolsai","author":{"name":"Microsoft Corporation"},"license":"MIT","homepage":"https://github.com/Microsoft/vscode-notebook-renderers","repository":{"type":"git","url":"https://github.com/Microsoft/vscode-notebook-renderers"},"bugs":{"url":"https://github.com/Microsoft/vscode-notebook-renderers/issues"},"qna":"https://stackoverflow.com/questions/tagged/visual-studio-code+jupyter","icon":"icon.png","galleryBanner":{"color":"#ffffff","theme":"light"},"keywords":["jupyter","notebook","notebookRenderer","multi-root ready"],"categories":["Other","Data Science","Machine Learning","Notebooks","Visualization"],"activationEvents":["onNotebook:*"],"enabledApiProposals":["contribNotebookStaticPreloads"],"main":"./out/extension_renderer/index.js","browser":"./out/extension_renderer/index.js","contributes":{"notebookPreload":[{"type":"jupyter-notebook","entrypoint":"./out/node_modules/@vscode/jupyter-ipywidgets7/dist/ipywidgets.js"},{"type":"interactive","entrypoint":"./out/node_modules/@vscode/jupyter-ipywidgets7/dist/ipywidgets.js"},{"type":"jupyter-notebook","entrypoint":"./out/node_modules/@vscode/jupyter-ipywidgets8/dist/ipywidgets.js"},{"type":"interactive","entrypoint":"./out/node_modules/@vscode/jupyter-ipywidgets8/dist/ipywidgets.js"},{"type":"jupyter-notebook","entrypoint":"./out/client_renderer/preload.js"},{"type":"interactive","entrypoint":"./out/client_renderer/preload.js"}],"notebookRenderer":[{"id":"jupyter-notebook-renderer","entrypoint":"./out/client_renderer/renderers.js","displayName":"Jupyter Notebook Renderer","requiresMessaging":"optional","mimeTypes":["image/gif","image/png","image/jpeg","image/svg+xml","application/geo+json","application/vdom.v1+json","application/vnd.dataresource+json","application/vnd.plotly.v1+json","application/vnd.vega.v2+json","application/vnd.vega.v3+json","application/vnd.vega.v4+json","application/vnd.vegalite.v1+json","application/vnd.vegalite.v2+json","application/x-nteract-model-debug+json","text/vnd.plotly.v1+html"]},{"id":"jupyter-notebook-built-in-renderer-hooks","displayName":"Jupyter Notebook Html/JavaScript Renderer","requiresMessaging":"optional","entrypoint":{"extends":"vscode.builtin-renderer","path":"./out/client_renderer/builtinRendererHooks.js"}},{"id":"jupyter-vega-renderer","displayName":"Jupyter Vega Renderer","requiresMessaging":"optional","entrypoint":"./out/client_renderer/vegaRenderer.js","mimeTypes":["application/vnd.vega.v5+json","application/vnd.vegalite.v3+json","application/vnd.vegalite.v4+json","application/vnd.vegalite.v5+json"]},{"id":"jupyter-markdown","displayName":"Jupyter Markdown styles","entrypoint":{"extends":"vscode.markdown-it-renderer","path":"./out/client_renderer/markdown.js"}}]},"scripts":{"vscode:prepublish":"npm run compile:webpack","dev":"concurrently -r npm:compile:extension:watch npm:compile:client:watch npm:compile:test:watch","compile":"npm run compile:extension && npm run compile:test && npm run compile:client","compile:extension":"tsc -p src/extension","compile:extension:watch":"tsc -p src/extension --watch","compile:test":"tsc -p src/test","compile:test:watch":"tsc -p src/test --watch","compile:webpack":"npm run build:client && npm run build:extension","compile:client":"webpack --config=build/webpack/webpack.client.config.js","build:client":"webpack --config=build/webpack/webpack.client.config.js --mode=production","build:extension":"webpack --config=build/webpack/webpack.extension.config.js --mode=production","compile:client:watch":"webpack --config=build/webpack/webpack.client.config.js --watch","lint":"eslint src --ext ts && eslint src --ext tsx && eslint build --ext js","lint-format":"npx prettier 'src/**/*.ts*' --check && npx prettier 'build/**/*.js' --check","watch":"tsc -watch -p ./","f":"vsce package -o ms-notebook-renderers.vsix","test":"node ./out/test/runTest.js","prettier-fix":"prettier 'src/**/*.ts*' --write && prettier 'build/**/*.js' --write","postinstall":"node ./build/postInstall.js"},"dependencies":{"@babel/helper-validator-identifier":"^7.10.1","@blueprintjs/core":"^3.7.0","@blueprintjs/select":"^3.2.0","@jupyter-widgets/base":"^4.1.0","@jupyter-widgets/controls":"^3.1.0","@jupyter-widgets/jupyterlab-manager":"^3.1.0","@jupyter-widgets/output":"^4.1.0","@jupyterlab/coreutils":"^5.4.2","@jupyterlab/nbformat":"^3.4.2","@loadable/component":"^5.12.0","@nteract/transform-dataresource":"^3.0.2","@nteract/transform-geojson":"^3.2.3","@nteract/transform-model-debug":"^3.2.3","@nteract/transform-plotly":"^7.0.0","@nteract/transform-vega":"7.0.10","@nteract/transforms":"^3.2.0","@phosphor/widgets":"^1.9.3","@vscode/jupyter-ipywidgets7":"^2.0.1","@vscode/jupyter-ipywidgets8":"^1.0.2","chownr":"^2.0.0","fs-minipass":"^2.1.0","jquery":"^3.6.1","lodash":"^4.17.21","minipass":"^3.1.6","minizlib":"^2.1.2","path-browserify":"^0.0.1","plotly.js-dist":"^2.20.0","re-resizable":"~6.5.5","react":"^16.8.4","react-dom":"^16.8.4","react-toggle":"^4.1.2","requirejs":"^2.3.6","styled-components":"5.2.1","tslib":"^1.14.1","underscore":"^1.13.1","util":"^0.12.3","uuid":"^3.3.2","vega":"^5.24.0","vega-embed":"^6.21.3","vega-lite":"^5.6.1","yallist":"^4.0.0"},"devDependencies":{"@types/copy-webpack-plugin":"^10.1.0","@types/glob":"^7.1.1","@types/loadable__component":"^5.10.0","@types/lodash":"^4.14.158","@types/markdown-it":"^12.2.3","@types/mocha":"^7.0.2","@types/node":"^12.11.7","@types/react":"^16.9.35","@types/react-dom":"^16.9.8","@types/uuid":"^8.0.0","@types/vscode":"^1.60.0","@types/vscode-notebook-renderer":"^1.60.0","@typescript-eslint/eslint-plugin":"^3.1.0","@typescript-eslint/parser":"^3.1.0","concurrently":"^5.2.0","copy-webpack-plugin":"^6.4.1","css-loader":"^3.5.3","eslint":"^7.1.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.3","fork-ts-checker-webpack-plugin":"^4.1.6","glob":"^7.1.6","install":"^0.13.0","less":"^3.11.3","mocha":"^10.1.0","node-loader":"^2.0.0","prettier":"^2.0.5","style-loader":"^1.2.1","svg-inline-loader":"^0.8.2","thread-loader":"^3.0.4","ts-loader":"^9.3.1","typescript":"^4.7.4","url-loader":"^4.1.0","vscode-test":"^1.4.0","webpack":"^5.76.3","webpack-bundle-analyzer":"^4.8.0","webpack-cli":"^5.0.1","webpack-fix-default-import-plugin":"^1.0.3"},"optionalDependencies":{"canvas":"^2.7.0"},"overrides":{"ini":"1.3.6","simple-get":"3.1.1","node-fetch":"2.6.7","prismjs":"1.27.0","jquery-ui@<1.13.2":"1.13.2","url-parse@<1.5.9":"1.5.9","terser@<5.14.2":"5.14.2","ua-parser-js":"0.7.24","moment@<2.29.4":"2.29.4","sanitize-html":"2.7.3"}},"location":{"$mid":1,"path":"/home/linuxbrew/app/code-server/extensions/ms-toolsai.jupyter-renderers-1.0.17-universal","scheme":"file"},"isBuiltin":false,"targetPlatform":"universal","metadata":{"id":"b15c72f8-d5fe-421a-a4f7-27ed9f6addbf","publisherId":"ac8eb7c9-3e59-4b39-8040-f0484d8170ce","publisherDisplayName":"ms-toolsai","targetPlatform":"universal","updated":false,"isPreReleaseVersion":false,"installedTimestamp":1695869201372,"preRelease":false},"isValid":true,"validations":[]},{"type":1,"identifier":{"id":"ms-toolsai.jupyter","uuid":"6c2f1801-1e7f-45b2-9b5c-7782f1e076e8"},"manifest":{"name":"jupyter","displayName":"Jupyter","version":"2023.7.100","description":"Jupyter notebook support, interactive programming and computing that supports Intellisense, debugging and more.","publisher":"ms-toolsai","author":{"name":"Microsoft Corporation"},"extensionPack":["ms-toolsai.jupyter-keymap","ms-toolsai.jupyter-renderers","ms-toolsai.vscode-jupyter-slideshow","ms-toolsai.vscode-jupyter-cell-tags"],"license":"MIT","homepage":"https://github.com/Microsoft/vscode-jupyter","repository":{"type":"git","url":"https://github.com/Microsoft/vscode-jupyter"},"bugs":{"url":"https://github.com/Microsoft/vscode-jupyter/issues"},"qna":"https://github.com/microsoft/vscode-jupyter/discussions","icon":"icon.png","galleryBanner":{"color":"#ffffff","theme":"light"},"engines":{"vscode":"^1.81.0"},"l10n":"./l10n","keywords":["jupyter","notebook","notebookKernelJupyterNotebook","multi-root ready","python","interactive"],"categories":["Extension Packs","Data Science","Machine Learning","Notebooks","Visualization"],"activationEvents":["onLanguage:python","onLanguage:jupyter","onNotebook:jupyter-notebook","onNotebook:interactive","onWebviewPanel:jupyter-variables","onWebviewPanel:jupyter"],"main":"./out/extension.node.js","browser":"./out/extension.web.bundle.js","capabilities":{"virtualWorkspaces":true,"untrustedWorkspaces":{"supported":"limited","description":"Execution of cells in Interactive Window and Notebooks is not supported in untrusted workspaces."}},"contributes":{"walkthroughs":[{"id":"jupyterWelcome","title":"Get Started with Jupyter Notebooks","description":"Your first steps to set up a Jupyter project with all the powerful tools and features that the Jupyter Extension has to offer!","when":"workspacePlatform != webworker","steps":[{"id":"ipynb.newUntitledIpynb","title":"Create or open a Jupyter Notebook","description":"Right click in the file explorer and create a new file with an .ipynb extension. Or, open the [Command Palette](command:workbench.action.showCommands) and run the command \n``Create: New Jupyter Notebook``.\n[Create New Jupyter Notebook](command:toSide:ipynb.newUntitledIpynb)\n If you have an existing project, you can also [open a folder](command:toSide:workbench.action.files.openFolder) and/or clone a project from GitHub: [clone a Git repository](command:toSide:git.clone).","media":{"svg":"resources/walkthroughs/opennotebook.svg","altText":"Creating a new Jupyter notebook"},"completionEvents":["onCommand:ipynb.newUntitledIpynb","onCommand:jupyter.createnewinteractive","onCommand:workbench.action.files.openFolder","onCommand:workbench.action.files.openFileFolder"]},{"id":"jupyter.selectKernel","title":"Select a Jupyter kernel","description":"Click Select Kernel at the top right of the notebook and choose the environment in which to run your kernel. Or, with a notebook opened and in focus, open the [Command Palette](command:workbench.action.showCommands) and run the command: \n``Notebook: Select Notebook Kernel``. \n[Open Command Palette to Select a Jupyter Kernel](command:workbench.action.showCommands)","media":{"svg":"resources/walkthroughs/kernel.svg","altText":"Selecting or changing a notebook kernel"},"completionEvents":["onCommand:notebook.selectKernel"]},{"id":"jupyter.exploreAndDebug","title":"Explore data and debug","description":"📅 You can use the [Data Viewer](https://code.visualstudio.com/docs/datascience/data-science-tutorial#_prepare-the-data) to view, sort, and filter the rows of data. After loading your data, click \"Variables\" at the top right of notebook and click the Data Viewer icon to the left of the data table. \n \n[Learn about Data Viewer](https://code.visualstudio.com/docs/datascience/data-science-tutorial#_prepare-the-data)\n \n📒 Debug your notebook using the [Run by Line](https://code.visualstudio.com/docs/datascience/jupyter-notebooks#_run-by-line) mode to execute a cell one line at a time. Click the Run by Line icon from your cell (play button with lines) or hit F10. \n \n[Learn about Run by Line](https://code.visualstudio.com/docs/datascience/jupyter-notebooks#_run-by-line)","media":{"svg":"resources/walkthroughs/data.svg","altText":"Opening data viewer"}},{"id":"jupyter.dataScienceLearnMore","title":"Find out more!","description":"🎨 Explore all the features the Jupyter Extension has to offer by looking for \"Jupyter\" in the [Command Palette](command:workbench.action.showCommands). \n 📈 Learn more about getting started with data science in [Python](command:workbench.action.openWalkthrough?%7B%22category%22%3A%22ms-python.python%23pythonDataScienceWelcome%22%2C%22step%22%3A%22ms-python.python%23python.createNewNotebook%22%7D) by installing the Python Extension ([search Python extension](command:workbench.extensions.search?\"ms-python.python\")). \n 📃 Find out more features in our [Tutorials](https://code.visualstudio.com/docs/datascience/jupyter-notebooks). \n[Learn more](https://aka.ms/AAdar6q)","media":{"svg":"resources/walkthroughs/learnmore.svg","altText":"Image representing our documentation page and mailing list resources."}}]}],"keybindings":[{"command":"jupyter.execSelectionInteractive","key":"shift+enter","when":"editorTextFocus && editorLangId == python && !findInputFocussed && !replaceInputFocussed && jupyter.ownsSelection && !notebookEditorFocused"},{"command":"jupyter.runcurrentcelladvance","key":"shift+enter","when":"editorTextFocus && !editorHasSelection && jupyter.hascodecells && !notebookEditorFocused"},{"command":"jupyter.runcurrentcell","key":"ctrl+enter","when":"editorTextFocus && !editorHasSelection && jupyter.hascodecells && !notebookEditorFocused && !jupyter.havenativecells"},{"command":"jupyter.runcurrentcellandaddbelow","key":"alt+enter","when":"editorTextFocus && !editorHasSelection && jupyter.hascodecells && !notebookEditorFocused"},{"key":"shift+enter","when":"activeEditor == 'workbench.editor.interactive' && notebookKernel =~ /^ms-toolsai.jupyter\\// || activeEditor == 'workbench.editor.interactive' && !notebookKernel","command":"interactive.execute"},{"key":"escape","when":"activeEditor == 'workbench.editor.interactive' && !editorHoverVisible && !suggestWidgetVisible && !isComposing && !inSnippetMode && !exceptionWidgetVisible && !selectionAnchorSet && !LinkedEditingInputVisible && !renameInputVisible && !editorHasSelection && !accessibilityHelpWidgetVisible && !breakpointWidgetVisible && !findWidgetVisible && !markersNavigationVisible && !parameterHintsVisible && !editorHasMultipleSelections && !notificationToastsVisible","command":"interactive.input.clear"},{"command":"jupyter.insertCellBelowPosition","key":"ctrl+; s","when":"editorTextFocus && jupyter.hascodecells && !notebookEditorFocused"},{"command":"jupyter.insertCellBelow","key":"ctrl+; b","when":"editorTextFocus && jupyter.hascodecells && !notebookEditorFocused"},{"command":"jupyter.insertCellAbove","key":"ctrl+; a","when":"editorTextFocus && jupyter.hascodecells && !notebookEditorFocused"},{"command":"jupyter.deleteCells","key":"ctrl+; x","when":"editorTextFocus && jupyter.hascodecells && !notebookEditorFocused"},{"command":"jupyter.extendSelectionByCellAbove","key":"ctrl+alt+shift+[","when":"editorTextFocus && jupyter.hascodecells && !notebookEditorFocused"},{"command":"jupyter.extendSelectionByCellBelow","key":"ctrl+alt+shift+]","when":"editorTextFocus && jupyter.hascodecells && !notebookEditorFocused"},{"command":"jupyter.moveCellsUp","key":"ctrl+; u","when":"editorTextFocus && jupyter.hascodecells && !notebookEditorFocused"},{"command":"jupyter.moveCellsDown","key":"ctrl+; d","when":"editorTextFocus && jupyter.hascodecells && !notebookEditorFocused"},{"command":"jupyter.changeCellToMarkdown","key":"ctrl+; m","when":"editorTextFocus && jupyter.hascodecells && !notebookEditorFocused"},{"command":"jupyter.changeCellToCode","key":"ctrl+; c","when":"editorTextFocus && jupyter.hascodecells && !notebookEditorFocused"},{"command":"jupyter.gotoNextCellInFile","key":"ctrl+alt+]","when":"editorTextFocus && jupyter.hascodecells && !notebookEditorFocused"},{"command":"jupyter.gotoPrevCellInFile","key":"ctrl+alt+[","when":"editorTextFocus && jupyter.hascodecells && !notebookEditorFocused"},{"command":"jupyter.selectCellContents","key":"ctrl+alt+\\","when":"editorTextFocus && jupyter.hascodecells && !notebookEditorFocused"},{"command":"jupyter.selectCell","key":"ctrl+alt+shift+\\","when":"editorTextFocus && jupyter.hascodecells && !notebookEditorFocused"},{"command":"jupyter.refreshDataViewer","key":"ctrl+r","mac":"cmd+r","when":"jupyter.dataViewerActive"},{"command":"jupyter.runAndDebugCell","key":"ctrl+alt+shift+enter","mac":"ctrl+shift+enter"},{"command":"jupyter.runByLine","key":"f10"},{"command":"jupyter.runByLineNext","key":"f10"},{"command":"jupyter.runByLineStop","key":"ctrl+enter"}],"commands":[{"command":"dataScience.ClearCache","title":"Clear Cache","category":"Jupyter (Dev)","enablement":"jupyter.development"},{"command":"dataScience.ClearUserProviderJupyterServerCache","title":"Clear User Jupyter Server Cache","category":"Jupyter (Dev)","enablement":"jupyter.development"},{"command":"jupyter.replayPylanceLog","title":"Replay Pylance Log","category":"Jupyter (Dev)","enablement":"jupyter.development && notebookType == jupyter-notebook && isWorkspaceTrusted && !jupyter.webExtension"},{"command":"jupyter.replayPylanceLogStep","title":"Step Pylance Log","category":"Jupyter (Dev)","icon":"$(debug-start)","enablement":"jupyter.development && notebookType == jupyter-notebook && isWorkspaceTrusted && jupyter.replayLogLoaded && !jupyter.webExtension"},{"command":"jupyter.filterKernels","title":"Filter Kernels","category":"Jupyter","enablement":"!jupyter.webExtension && config.notebook.kernelPicker.type != mru"},{"command":"jupyter.runByLine","title":"Run by Line","icon":"$(debug-line-by-line)","category":"Jupyter","enablement":"notebookKernel =~ /^ms-toolsai.jupyter\\// && jupyter.ispythonnotebook && notebookCellType == code && isWorkspaceTrusted && resource not in jupyter.notebookeditor.debugDocuments || !notebookKernel && jupyter.ispythonnotebook && notebookCellType == code && isWorkspaceTrusted"},{"command":"jupyter.runAndDebugCell","title":"Debug Cell","icon":"$(debug-alt-small)","category":"Jupyter","enablement":"notebookKernel =~ /^ms-toolsai.jupyter\\// && jupyter.ispythonnotebook && notebookCellType == code && isWorkspaceTrusted && resource not in jupyter.notebookeditor.debugDocuments || !notebookKernel && jupyter.ispythonnotebook && notebookCellType == code && isWorkspaceTrusted"},{"command":"jupyter.runByLineNext","title":"Run Next Line","icon":"$(debug-line-by-line)","category":"Jupyter","enablement":"notebookCellResource in jupyter.notebookeditor.runByLineCells"},{"command":"jupyter.runByLineStop","title":"Continue Execution","icon":"$(debug-continue-small)","category":"Jupyter","enablement":"notebookCellResource in jupyter.notebookeditor.runByLineCells"},{"command":"jupyter.viewOutput","title":"Show Output","category":"Jupyter"},{"command":"jupyter.notebookeditor.export","title":"Export As","shortTitle":"Export","category":"Notebook","icon":{"light":"resources/light/export_to_python.svg","dark":"resources/dark/export_to_python.svg"},"enablement":"notebookType == jupyter-notebook && isWorkspaceTrusted && !jupyter.webExtension || notebookType == jupyter-notebook && isWorkspaceTrusted && jupyter.webExtension && notebookKernel =~ /^ms-toolsai.jupyter\\//"},{"command":"jupyter.export","title":"Export As","category":"Jupyter","enablement":"isWorkspaceTrusted && !jupyter.webExtension || isWorkspaceTrusted && jupyter.webExtension && notebookKernel =~ /^ms-toolsai.jupyter\\//"},{"command":"jupyter.exportAsPythonScript","title":"Export to Python Script","category":"Jupyter","enablement":"isWorkspaceTrusted && !jupyter.webExtension || isWorkspaceTrusted && jupyter.webExtension && notebookKernel =~ /^ms-toolsai.jupyter\\//"},{"command":"jupyter.exportToHTML","title":"Export to HTML","category":"Jupyter","enablement":"isWorkspaceTrusted && !jupyter.webExtension || isWorkspaceTrusted && jupyter.webExtension && notebookKernel =~ /^ms-toolsai.jupyter\\//"},{"command":"jupyter.exportToPDF","title":"Export to PDF","category":"Jupyter","enablement":"isWorkspaceTrusted && !jupyter.webExtension || isWorkspaceTrusted && jupyter.webExtension && notebookKernel =~ /^ms-toolsai.jupyter\\//"},{"command":"jupyter.selectJupyterInterpreter","title":"Select Interpreter to Start Jupyter Server","category":"Jupyter","enablement":"isWorkspaceTrusted && !jupyter.webExtension"},{"command":"jupyter.runcurrentcell","title":"Run Current Cell","category":"Jupyter","enablement":"isWorkspaceTrusted"},{"command":"jupyter.debugcell","title":"Debug Cell","category":"Jupyter","enablement":"isWorkspaceTrusted"},{"command":"jupyter.debugstepover","title":"Step Over","category":"Jupyter","enablement":"isWorkspaceTrusted"},{"command":"jupyter.debugstop","title":"Stop","category":"Jupyter","enablement":"isWorkspaceTrusted"},{"command":"jupyter.debugcontinue","title":"Continue","category":"Jupyter","enablement":"isWorkspaceTrusted"},{"command":"jupyter.insertCellBelowPosition","title":"Insert Cell Below Position","category":"Jupyter","enablement":"isWorkspaceTrusted && !jupyter.webExtension"},{"command":"jupyter.insertCellBelow","title":"Insert Cell Below","category":"Jupyter","enablement":"!jupyter.webExtension"},{"command":"jupyter.insertCellAbove","title":"Insert Cell Above","category":"Jupyter","enablement":"!jupyter.webExtension"},{"command":"jupyter.deleteCells","title":"Delete Selected Cells","category":"Jupyter","enablement":"!jupyter.webExtension"},{"command":"jupyter.selectCell","title":"Select Cell","category":"Jupyter","enablement":"!jupyter.webExtension"},{"command":"jupyter.selectCellContents","title":"Select Cell Contents","category":"Jupyter","enablement":"!jupyter.webExtension"},{"command":"jupyter.extendSelectionByCellAbove","title":"Extend Selection By Cell Above","category":"Jupyter","enablement":"!jupyter.webExtension"},{"command":"jupyter.extendSelectionByCellBelow","title":"Extend Selection By Cell Below","category":"Jupyter","enablement":"!jupyter.webExtension"},{"command":"jupyter.moveCellsUp","title":"Move Selected Cells Up","category":"Jupyter","enablement":"!jupyter.webExtension"},{"command":"jupyter.moveCellsDown","title":"Move Selected Cells Down","category":"Jupyter","enablement":"!jupyter.webExtension"},{"command":"jupyter.changeCellToMarkdown","title":"Change Cell to Markdown","category":"Jupyter","enablement":"!jupyter.webExtension"},{"command":"jupyter.changeCellToCode","title":"Change Cell to Code","category":"Jupyter","enablement":"!jupyter.webExtension"},{"command":"jupyter.gotoNextCellInFile","title":"Go to Next Cell","category":"Jupyter","enablement":"!jupyter.webExtension"},{"command":"jupyter.gotoPrevCellInFile","title":"Go to Previous Cell","category":"Jupyter","enablement":"!jupyter.webExtension"},{"command":"jupyter.runcurrentcelladvance","title":"Run Current Cell And Advance","category":"Jupyter","enablement":"isWorkspaceTrusted"},{"command":"jupyter.runcurrentcellandallbelow.palette","title":"Run Current Cell and Below","category":"Jupyter","enablement":"isWorkspaceTrusted"},{"command":"jupyter.runallcellsabove.palette","title":"Run Cells Above Current Cell","category":"Jupyter","enablement":"isWorkspaceTrusted"},{"command":"jupyter.debugcurrentcell.palette","title":"Debug Current Cell","category":"Jupyter","enablement":"isWorkspaceTrusted && !jupyter.webExtension"},{"command":"jupyter.execSelectionInteractive","title":"Run Selection/Line in Interactive Window","category":"Jupyter","enablement":"isWorkspaceTrusted && !jupyter.webExtension"},{"command":"jupyter.createnewinteractive","title":"Create Interactive Window","category":"Jupyter","enablement":"isWorkspaceTrusted"},{"command":"jupyter.runFileInteractive","title":"Run Current File in Interactive Window","icon":"$(play)","category":"Jupyter","enablement":"isWorkspaceTrusted"},{"command":"jupyter.debugFileInteractive","title":"Debug Current File in Interactive Window","category":"Jupyter","enablement":"isWorkspaceTrusted && !jupyter.webExtension"},{"command":"jupyter.runallcells","title":"Run All Cells","category":"Jupyter","enablement":"isWorkspaceTrusted"},{"command":"jupyter.runallcellsabove","title":"Run Above","category":"Jupyter","enablement":"isWorkspaceTrusted"},{"command":"jupyter.runcellandallbelow","title":"Run Below","category":"Jupyter","enablement":"isWorkspaceTrusted"},{"command":"jupyter.runcell","title":"Run Cell","category":"Jupyter","enablement":"isWorkspaceTrusted"},{"command":"jupyter.runtoline","title":"Run To Line in Interactive Window","category":"Jupyter","enablement":"isWorkspaceTrusted && !jupyter.webExtension"},{"command":"jupyter.runfromline","title":"Run From Line in Interactive Window","category":"Jupyter","enablement":"isWorkspaceTrusted && !jupyter.webExtension"},{"command":"jupyter.importnotebook","title":"Import Jupyter Notebook","category":"Jupyter","enablement":"isWorkspaceTrusted && !jupyter.webExtension"},{"command":"jupyter.importnotebookfile","title":"Import Notebook to Script","category":"Jupyter","enablement":"isWorkspaceTrusted && !jupyter.webExtension"},{"command":"jupyter.exportoutputasnotebook","title":"Export Interactive Window as Jupyter Notebook","category":"Jupyter","enablement":"isWorkspaceTrusted && !jupyter.webExtension"},{"command":"jupyter.exportfileasnotebook","title":"Export Current Python File as Jupyter Notebook","category":"Jupyter","enablement":"isWorkspaceTrusted && !jupyter.webExtension"},{"command":"jupyter.exportfileandoutputasnotebook","title":"Export Current Python File and Output as Jupyter Notebook","category":"Jupyter","enablement":"isWorkspaceTrusted && !jupyter.webExtension"},{"command":"jupyter.notebookeditor.undocells","title":"Undo Last Interactive Action","category":"Notebook","enablement":"!jupyter.webExtension"},{"command":"jupyter.notebookeditor.redocells","title":"Redo Last Interactive Action","category":"Notebook","enablement":"!jupyter.webExtension"},{"command":"jupyter.interruptkernel","title":"Interrupt Kernel","shortTitle":"Interrupt","category":"Jupyter","icon":{"light":"resources/light/interrupt.svg","dark":"resources/dark/interrupt.svg"},"enablement":"isWorkspaceTrusted && jupyter.interactive.canInterruptNotebookKernel"},{"command":"jupyter.restartkernel","title":"Restart Kernel","shortTitle":"Restart","category":"Jupyter","icon":{"light":"resources/light/restart-kernel.svg","dark":"resources/dark/restart-kernel.svg"},"enablement":"isWorkspaceTrusted && (jupyter.interactive.canRestartNotebookKernel || (notebookKernel =~ /^ms-toolsai.jupyter\\// && jupyter.notebookeditor.canrestartNotebookkernel))"},{"command":"jupyter.restartkernelandrunallcells","title":"Restart Kernel and Run All Cells","shortTitle":"Restart and Run All","category":"Jupyter","enablement":"isWorkspaceTrusted && (jupyter.interactive.canRestartNotebookKernel || (notebookKernel =~ /^ms-toolsai.jupyter\\// && jupyter.notebookeditor.canrestartNotebookkernel))"},{"command":"jupyter.restartkernelandrunuptoselectedcell","title":"Restart Kernel and Run Up To Selected Cell","shortTitle":"Restart Kernel and Run Up To Selected Cell","category":"Jupyter","enablement":"isWorkspaceTrusted && (notebookKernel =~ /^ms-toolsai.jupyter\\// && jupyter.notebookeditor.canrestartNotebookkernel)"},{"command":"jupyter.notebookeditor.addcellbelow","title":"Add Empty Cell to Notebook File","category":"Notebook","enablement":"!jupyter.webExtension"},{"command":"jupyter.notebookeditor.removeallcells","title":"Delete All Notebook Editor Cells","category":"Notebook","enablement":"!jupyter.webExtension"},{"command":"jupyter.notebookeditor.expandallcells","title":"Expand All Notebook Cells","category":"Notebook","enablement":"!jupyter.webExtension"},{"command":"jupyter.notebookeditor.collapseallcells","title":"Collapse All Notebook Cells","category":"Notebook","enablement":"!jupyter.webExtension"},{"command":"jupyter.expandallcells","title":"Expand All Interactive Cells","shortTitle":"Expand","category":"Jupyter","icon":"$(expand-all)"},{"command":"jupyter.collapseallcells","title":"Collapse All Interactive Cells","shortTitle":"Collapse","category":"Jupyter","icon":"$(collapse-all)"},{"command":"jupyter.addcellbelow","title":"Add Empty Cell to File","category":"Jupyter","enablement":"!jupyter.webExtension"},{"command":"jupyter.createnewnotebook","title":"Create New Jupyter Notebook","category":"Jupyter","enablement":"!jupyter.webExtension"},{"command":"jupyter.scrolltocell","title":"Scroll Cell Into View","category":"Jupyter","enablement":"!jupyter.webExtension"},{"command":"jupyter.latestExtension","title":"DataScience.latestExtension","category":"Jupyter","enablement":"!jupyter.webExtension"},{"command":"jupyter.enableDebugLogging","title":"Enable Debug Logging","category":"Jupyter","enablement":"!jupyter.webExtension"},{"command":"jupyter.resetLoggingLevel","title":"Reset Logging Level","enablement":"!jupyter.webExtension","category":"Jupyter"},{"command":"jupyter.showDataViewer","title":"View Value in Data Viewer","enablement":"!jupyter.webExtension","category":"Jupyter"},{"command":"jupyter.clearSavedJupyterUris","title":"Clear Jupyter Remote Server List","category":"Jupyter"},{"command":"jupyter.openVariableView","title":"Open Variables View","shortTitle":"Variables","icon":"$(variable-group)","category":"Jupyter","enablement":"notebookType == jupyter-notebook && isWorkspaceTrusted || notebookType == interactive && isWorkspaceTrusted"},{"command":"jupyter.openOutlineView","title":"Show Table Of Contents (Outline View)","shortTitle":"Outline","icon":"$(list-unordered)","category":"Jupyter","enablement":"notebookType == jupyter-notebook"},{"command":"jupyter.refreshDataViewer","title":"Refresh Data Viewer","category":"Jupyter","enablement":"jupyter.dataViewerActive && isWorkspaceTrusted"},{"command":"jupyter.interactive.clearAllCells","title":"Clear All","icon":"$(close)","category":"Jupyter"},{"command":"jupyter.interactive.goToCode","title":"Go to code","icon":"$(go-to-file)","category":"Jupyter"},{"command":"jupyter.interactive.exportasnotebook","title":"Export to Jupyter Notebook","shortTitle":"Save","icon":"$(save-as)","enablement":"notebookType == interactive","category":"Jupyter"},{"command":"jupyter.interactive.exportas","title":"Export","icon":{"light":"resources/light/export_to_python.svg","dark":"resources/dark/export_to_python.svg"},"enablement":"notebookType == interactive","category":"Jupyter"},{"command":"jupyter.interactive.copyCell","title":"Copy Cell","icon":"$(copy)","category":"Jupyter"},{"command":"jupyter.runInDedicatedExtensionHost","title":"Run in Dedicated Extension Host","enablement":"!jupyter.webExtension","category":"Jupyter"},{"command":"jupyter.continueEditSessionInCodespace","title":"Continue On Codespace","shortTitle":"Continue On","icon":"$(vm)","enablement":"true","category":"Jupyter"}],"submenus":[{"id":"editor.interactiveWindow.context","label":"Run in Interactive Window"}],"menus":{"editor/context":[{"submenu":"editor.interactiveWindow.context","group":"Jupyter2"},{"when":"editorFocus && editorLangId == python && resourceExtname == .ipynb && !notebookEditorFocused && isWorkspaceTrusted","command":"jupyter.importnotebook","group":"Jupyter3@1"},{"when":"editorFocus && editorLangId == python && jupyter.hascodecells && !notebookEditorFocused && isWorkspaceTrusted","command":"jupyter.exportfileasnotebook","group":"Jupyter3@2"},{"when":"editorFocus && editorLangId == python && jupyter.hascodecells && !notebookEditorFocused && isWorkspaceTrusted","command":"jupyter.exportfileandoutputasnotebook","group":"Jupyter3@3"}],"editor.interactiveWindow.context":[{"when":"editorFocus && editorLangId == python && jupyter.hascodecells && !notebookEditorFocused && isWorkspaceTrusted","command":"jupyter.runallcells","group":"Jupyter2"},{"when":"editorFocus && editorLangId == python && jupyter.hascodecells && !notebookEditorFocused && isWorkspaceTrusted","command":"jupyter.runcurrentcell","group":"Jupyter2"},{"when":"editorFocus && editorLangId == python && jupyter.hascodecells && !notebookEditorFocused && isWorkspaceTrusted","command":"jupyter.runcurrentcelladvance","group":"Jupyter2"},{"command":"jupyter.runFileInteractive","group":"Jupyter2","when":"editorFocus && editorLangId == python && !notebookEditorFocused && isWorkspaceTrusted"},{"command":"jupyter.runfromline","group":"Jupyter2","when":"editorFocus && editorLangId == python && !notebookEditorFocused && isWorkspaceTrusted"},{"command":"jupyter.runtoline","group":"Jupyter2","when":"editorFocus && editorLangId == python && !notebookEditorFocused && isWorkspaceTrusted"},{"command":"jupyter.execSelectionInteractive","group":"Jupyter2","when":"editorFocus && editorLangId == python && !notebookEditorFocused && isWorkspaceTrusted"}],"editor/title":[{"command":"jupyter.restartkernel","title":"Restart Kernel","group":"navigation@1","when":"notebookKernel =~ /^ms-toolsai.jupyter\\// && notebookType == 'jupyter-notebook' && isWorkspaceTrusted && jupyter.notebookeditor.canrestartNotebookkernel && config.notebook.globalToolbar != true"},{"command":"jupyter.openVariableView","title":"Open Variables View","group":"navigation@2","when":"notebookKernel =~ /^ms-toolsai.jupyter\\// && notebookType == 'jupyter-notebook' && isWorkspaceTrusted && config.notebook.globalToolbar != true && jupyter.ispythonnotebook"},{"command":"jupyter.openOutlineView","title":"Show Table Of Contents (Outline View)","group":"navigation@3","when":"notebookKernel =~ /^ms-toolsai.jupyter\\// && notebookType == 'jupyter-notebook' && config.jupyter.showOutlineButtonInNotebookToolbar && config.notebook.globalToolbar != true"},{"command":"jupyter.notebookeditor.export","title":"Export As","group":"navigation@4","when":"notebookType == 'jupyter-notebook' && isWorkspaceTrusted && config.notebook.globalToolbar != true"},{"command":"jupyter.continueEditSessionInCodespace","group":"navigation@5","when":"notebookType == 'jupyter-notebook' && jupyter.kernelSource == 'github-codespaces' && config.notebook.globalToolbar != true"}],"notebook/toolbar":[{"command":"jupyter.restartkernel","group":"navigation/execute@5","when":"notebookKernel =~ /^ms-toolsai.jupyter\\// && notebookType == 'jupyter-notebook' && isWorkspaceTrusted && jupyter.kernel.isjupyter"},{"command":"jupyter.openVariableView","group":"navigation@1","when":"notebookKernel =~ /^ms-toolsai.jupyter\\// && notebookType == 'jupyter-notebook' && isWorkspaceTrusted && jupyter.ispythonnotebook && jupyter.kernel.isjupyter"},{"command":"jupyter.openOutlineView","group":"navigation@2","when":"notebookType == 'jupyter-notebook' && config.jupyter.showOutlineButtonInNotebookToolbar"},{"command":"jupyter.continueEditSessionInCodespace","group":"navigation@3","when":"notebookType == 'jupyter-notebook' && jupyter.kernelSource == 'github-codespaces'"},{"command":"jupyter.notebookeditor.export","group":"Jupyter","when":"notebookType == 'jupyter-notebook' && isWorkspaceTrusted"},{"command":"jupyter.replayPylanceLogStep","group":"navigation@1","when":"notebookType == 'jupyter-notebook' && isWorkspaceTrusted && jupyter.replayLogLoaded"}],"notebook/cell/title":[{"command":"jupyter.runByLine","when":"notebookKernel =~ /^ms-toolsai.jupyter\\// && notebookType == jupyter-notebook && jupyter.ispythonnotebook && notebookCellType == code && isWorkspaceTrusted && resource not in jupyter.notebookeditor.runByLineDocuments || !notebookKernel && notebookType == jupyter-notebook && jupyter.ispythonnotebook && notebookCellType == code && isWorkspaceTrusted","group":"inline/cell@0"},{"command":"jupyter.runByLineNext","when":"notebookCellResource in jupyter.notebookeditor.runByLineCells","group":"inline/cell@0"},{"command":"jupyter.runByLineStop","when":"notebookCellResource in jupyter.notebookeditor.runByLineCells && notebookCellToolbarLocation == left","group":"inline/cell@1"},{"command":"jupyter.runByLineStop","when":"notebookCellResource in jupyter.notebookeditor.runByLineCells && notebookCellToolbarLocation == right","group":"inline/cell@0"}],"notebook/cell/execute":[{"command":"jupyter.runAndDebugCell","when":"notebookKernel =~ /^ms-toolsai.jupyter\\// && jupyter.ispythonnotebook && notebookCellType == code && isWorkspaceTrusted && resource not in jupyter.notebookeditor.debugDocuments || !notebookKernel && jupyter.ispythonnotebook && notebookCellType == code && isWorkspaceTrusted"}],"interactive/toolbar":[{"command":"jupyter.interactive.clearAllCells","group":"navigation@0","when":"isWorkspaceTrusted && notebookKernel =~ /^ms-toolsai.jupyter\\// || isWorkspaceTrusted && !notebookKernel"},{"command":"jupyter.restartkernel","group":"navigation@1","when":"isWorkspaceTrusted && notebookKernel =~ /^ms-toolsai.jupyter\\// || isWorkspaceTrusted && !notebookKernel"},{"command":"jupyter.openVariableView","group":"navigation@3","when":"isWorkspaceTrusted && notebookKernel =~ /^ms-toolsai.jupyter\\// || isWorkspaceTrusted && !notebookKernel"},{"command":"jupyter.interactive.exportasnotebook","group":"navigation@4","when":"isWorkspaceTrusted && notebookKernel =~ /^ms-toolsai.jupyter\\// || isWorkspaceTrusted && !notebookKernel"},{"command":"jupyter.interactive.exportas","group":"navigation@5","when":"isWorkspaceTrusted && notebookKernel =~ /^ms-toolsai.jupyter\\// || isWorkspaceTrusted && !notebookKernel"},{"command":"jupyter.expandallcells","group":"navigation@6","when":"isWorkspaceTrusted && notebookKernel =~ /^ms-toolsai.jupyter\\// || isWorkspaceTrusted && !notebookKernel"},{"command":"jupyter.collapseallcells","group":"navigation@7","when":"isWorkspaceTrusted && notebookKernel =~ /^ms-toolsai.jupyter\\// || isWorkspaceTrusted && !notebookKernel"}],"interactive/cell/title":[{"command":"jupyter.interactive.copyCell","group":"inline@0","when":"isWorkspaceTrusted && notebookKernel =~ /^ms-toolsai.jupyter\\// || isWorkspaceTrusted && !notebookKernel"},{"command":"jupyter.interactive.goToCode","group":"inline@1","when":"isWorkspaceTrusted && notebookKernel =~ /^ms-toolsai.jupyter\\// || isWorkspaceTrusted && !notebookKernel"}],"explorer/context":[{"when":"resourceLangId == python && !notebookEditorFocused && isWorkspaceTrusted","command":"jupyter.runFileInteractive","group":"Jupyter2"},{"when":"resourceExtname == .ipynb && isWorkspaceTrusted","command":"jupyter.importnotebookfile","group":"Jupyter"}],"commandPalette":[{"command":"jupyter.replayPylanceLog","title":"Replay Pylance Log","when":"jupyter.development && isWorkspaceTrusted"},{"command":"jupyter.interactive.copyCell","when":"false"},{"command":"jupyter.exportAsPythonScript","title":"Export to Python Script","category":"Jupyter","when":"jupyter.isnativeactive && isWorkspaceTrusted && jupyter.ispythonnotebook && isWorkspaceTrusted"},{"command":"jupyter.refreshDataViewer","category":"Jupyter","when":"isWorkspaceTrusted"},{"command":"jupyter.exportToHTML","title":"Export to HTML","category":"Jupyter","when":"jupyter.isnativeactive && isWorkspaceTrusted"},{"command":"jupyter.exportToPDF","title":"Export to PDF","category":"Jupyter","when":"jupyter.isnativeactive && isWorkspaceTrusted"},{"command":"jupyter.insertCellBelowPosition","title":"Insert Cell Below Position","category":"Jupyter","when":"jupyter.hascodecells && !notebookEditorFocused"},{"command":"jupyter.insertCellBelow","title":"Insert Cell Below","category":"Jupyter","when":"jupyter.hascodecells && !notebookEditorFocused"},{"command":"jupyter.insertCellAbove","title":"Insert Cell Above","category":"Jupyter","when":"jupyter.hascodecells && !notebookEditorFocused"},{"command":"jupyter.deleteCells","title":"Delete Selected Cells","category":"Jupyter","when":"jupyter.hascodecells && !notebookEditorFocused"},{"command":"jupyter.selectCell","title":"Select Cell","category":"Jupyter","when":"jupyter.hascodecells && !notebookEditorFocused"},{"command":"jupyter.selectCellContents","title":"Select Cell Contents","category":"Jupyter","when":"jupyter.hascodecells && !notebookEditorFocused"},{"command":"jupyter.extendSelectionByCellAbove","title":"Extend Selection By Cell Above","category":"Jupyter","when":"jupyter.hascodecells && !notebookEditorFocused"},{"command":"jupyter.extendSelectionByCellBelow","title":"Extend Selection By Cell Below","category":"Jupyter","when":"jupyter.hascodecells && !notebookEditorFocused"},{"command":"jupyter.moveCellsUp","title":"Move Selected Cells Up","category":"Jupyter","when":"jupyter.hascodecells && !notebookEditorFocused"},{"command":"jupyter.moveCellsDown","title":"Move Selected Cells Down","category":"Jupyter","when":"jupyter.hascodecells && !notebookEditorFocused"},{"command":"jupyter.changeCellToMarkdown","title":"Change Cell to Markdown","category":"Jupyter","when":"jupyter.hascodecells && !notebookEditorFocused"},{"command":"jupyter.changeCellToCode","title":"Change Cell to Code","category":"Jupyter","when":"jupyter.hascodecells && !notebookEditorFocused"},{"command":"jupyter.gotoNextCellInFile","title":"Go to Next Cell","category":"Jupyter","when":"jupyter.hascodecells && !notebookEditorFocused"},{"command":"jupyter.gotoPrevCellInFile","title":"Go to Previous Cell","category":"Jupyter","when":"jupyter.hascodecells && !notebookEditorFocused"},{"command":"jupyter.runcurrentcell","title":"Run Current Cell","category":"Jupyter","when":"jupyter.hascodecells && jupyter.ispythonornativeactive && !jupyter.havenativecells && isWorkspaceTrusted"},{"command":"jupyter.runcurrentcelladvance","title":"Run Current Cell And Advance","category":"Jupyter","when":"jupyter.hascodecells && jupyter.ispythonornativeactive && !jupyter.havenativecells && isWorkspaceTrusted"},{"command":"jupyter.runcurrentcellandallbelow.palette","title":"Run Current Cell and Below","category":"Jupyter","when":"jupyter.hascodecells && jupyter.ispythonornativeactive && !jupyter.havenativecells && isWorkspaceTrusted"},{"command":"jupyter.runallcellsabove.palette","title":"Run Cells Above Current Cell","category":"Jupyter","when":"jupyter.hascodecells && jupyter.ispythonornativeactive && !jupyter.havenativecells && isWorkspaceTrusted"},{"command":"jupyter.debugcurrentcell.palette","title":"Debug Current Cell","category":"Jupyter","when":"editorLangId == python && jupyter.hascodecells && isWorkspaceTrusted"},{"command":"jupyter.createnewinteractive","title":"Create Interactive Window","category":"Jupyter","when":"isWorkspaceTrusted"},{"command":"jupyter.runallcells","title":"Run All Cells","category":"Jupyter","when":"jupyter.hascodecells && jupyter.ispythonornativeactive && isWorkspaceTrusted"},{"command":"jupyter.scrolltocell","title":"Scroll Cell Into View","category":"Jupyter","when":"false"},{"command":"jupyter.debugcell","title":"Debug Cell","category":"Jupyter","when":"config.noExists"},{"command":"jupyter.runcell","title":"Run Cell","category":"Jupyter","when":"config.noExists"},{"command":"jupyter.runFileInteractive","title":"Run Current File in Interactive Window","category":"Jupyter","when":"editorLangId == python && !notebookEditorFocused && isWorkspaceTrusted"},{"command":"jupyter.debugFileInteractive","title":"Debug Current File in Interactive Window","category":"Jupyter","when":"editorLangId == python && !notebookEditorFocused && isWorkspaceTrusted"},{"command":"jupyter.importnotebook","title":"Import Jupyter Notebook","category":"Jupyter","when":"isWorkspaceTrusted"},{"command":"jupyter.exportfileasnotebook","title":"Export Current Python File as Jupyter Notebook","category":"Jupyter","when":"jupyter.hascodecells && jupyter.ispythonorinteractiveeactive && !notebookEditorFocused && isWorkspaceTrusted"},{"command":"jupyter.exportfileandoutputasnotebook","title":"Export Current Python File and Output as Jupyter Notebook","category":"Jupyter","when":"jupyter.hascodecells && jupyter.ispythonorinteractiveeactive && !notebookEditorFocused && isWorkspaceTrusted"},{"command":"jupyter.restartkernel","title":"Restart Kernel","category":"Jupyter","when":"(jupyter.ispythonorinteractiveeactive || jupyter.isnativeactive) && isWorkspaceTrusted"},{"command":"jupyter.notebookeditor.removeallcells","title":"Delete All Notebook Editor Cells","category":"Notebook","when":"jupyter.havenativecells && jupyter.isnativeactive && isWorkspaceTrusted"},{"command":"jupyter.notebookeditor.addcellbelow","title":"Add Empty Cell to Notebook File","category":"Notebook","when":"jupyter.isnativeactive && isWorkspaceTrusted"},{"command":"jupyter.notebookeditor.expandallcells","title":"Expand All Interactive Cells","category":"Notebook","when":"notebookEditorFocused && notebookType == 'jupyter-notebook'"},{"command":"jupyter.notebookeditor.collapseallcells","title":"Collapse All Interactive Cells","category":"Notebook","when":"notebookEditorFocused && notebookType == 'jupyter-notebook'"},{"command":"jupyter.expandallcells","title":"Expand All Interactive Cells","shortTitle":"Expand","category":"Jupyter","when":"jupyter.isinteractiveactive"},{"command":"jupyter.collapseallcells","title":"Collapse All Interactive Cells","shortTitle":"Collapse","category":"Jupyter","when":"jupyter.isinteractiveactive"},{"command":"jupyter.exportoutputasnotebook","title":"Export Interactive Window as Jupyter Notebook","category":"Jupyter","when":"jupyter.isinteractiveactive"},{"command":"jupyter.runcellandallbelow","category":"Jupyter","when":"config.noExists"},{"command":"jupyter.runallcellsabove","category":"Jupyter","when":"config.noExists"},{"command":"jupyter.debugcontinue","category":"Jupyter","when":"config.noExists"},{"command":"jupyter.debugstop","category":"Jupyter","when":"config.noExists"},{"command":"jupyter.debugstepover","category":"Jupyter","when":"config.noExists"},{"command":"jupyter.debugcell","category":"Jupyter","when":"config.noExists"},{"command":"jupyter.addcellbelow","title":"Add Empty Cell to File","category":"Jupyter","when":"jupyter.hascodecells && jupyter.ispythonornativeactive"},{"command":"jupyter.createnewnotebook","category":"Jupyter","when":"false"},{"command":"jupyter.runtoline","category":"Jupyter","when":"config.noExists"},{"command":"jupyter.runfromline","category":"Jupyter","when":"config.noExists"},{"command":"jupyter.execSelectionInteractive","category":"Jupyter","when":"editorLangId == python && !notebookEditorFocused && isWorkspaceTrusted"},{"command":"jupyter.latestExtension","title":"Download the latest version of the Jupyter Extension","category":"Jupyter","when":"false"},{"command":"jupyter.export","title":"Export As","category":"Jupyter","when":"false"},{"command":"jupyter.notebookeditor.export","title":"Export As","category":"Notebook","when":"false"},{"command":"jupyter.resetLoggingLevel","title":"Reset Logging Level","category":"Jupyter","when":"config.jupyter.logging.level != error"},{"command":"jupyter.enableDebugLogging","title":"Enable Debug Logging","category":"Jupyter","when":"config.jupyter.logging.level != debug"},{"command":"jupyter.showDataViewer","category":"Jupyter","when":"false"},{"command":"jupyter.openVariableView","title":"Open Variables View","category":"Jupyter","when":"notebookType == jupyter-notebook && isWorkspaceTrusted"},{"command":"jupyter.openOutlineView","title":"Show Table Of Contents (Outline View)","category":"Jupyter","when":"notebookType == jupyter-notebook && isWorkspaceTrusted"},{"command":"jupyter.interactive.goToCode","when":"false"},{"command":"jupyter.interactive.clearAllCells","when":"editorFocus && editorLangId == python || activeEditor == 'workbench.editor.interactive'"},{"command":"jupyter.clearSavedJupyterUris","title":"Clear Jupyter Remote Server List"}],"debug/variables/context":[{"command":"jupyter.showDataViewer","group":"1_view","when":"debugProtocolVariableMenuContext == 'viewableInDataViewer'"}],"editor/title/run":[{"command":"jupyter.runFileInteractive","group":"jupyter","when":"resourceLangId == python && !isInDiffEditor && !notebookEditorFocused && isWorkspaceTrusted"}]},"configuration":{"type":"object","title":"Jupyter","properties":{"jupyter.experiments.enabled":{"type":"boolean","default":true,"description":"Enables/disables A/B tests.","scope":"machine"},"jupyter.showVariableViewWhenDebugging":{"type":"boolean","default":false,"description":"Bring up the Variable View when starting a Run by Line session.","scope":"resource"},"jupyter.logging.level":{"type":"string","default":"debug","enum":["off","error","warn","info","debug","verbose"],"description":"The logging level the extension logs at."},"jupyter.experiments.optInto":{"type":"array","default":[],"items":{"enum":["FastKernelPicker","PasswordManager","NewRemoteUriStorage","NewJupyterSession"]},"markdownDescription":"List of experiment to opt into. If empty, user is assigned the default experiment groups. [Learn more](https://github.com/microsoft/vscode-jupyter/wiki/Experiments).","scope":"application"},"jupyter.experiments.optOutFrom":{"type":"array","default":[],"items":{"enum":["FastKernelPicker","PasswordManager","NewRemoteUriStorage","NewJupyterSession"]},"markdownDescription":"List of experiment to opt out of. If empty, user is assigned the default experiment groups. [Learn more](https://github.com/microsoft/vscode-jupyter/wiki/Experiments).","scope":"application"},"jupyter.widgetScriptSources":{"type":"array","default":[],"items":{"type":"string","enum":["jsdelivr.com","unpkg.com"],"enumDescriptions":["Loads widget (javascript) scripts from https://www.jsdelivr.com/","Loads widget (javascript) scripts from https://unpkg.com/"]},"uniqueItems":true,"markdownDescription":"Defines the location and order of the sources where scripts files for Widgets are downloaded from (e.g. ipywidgest, bqplot, beakerx, ipyleaflet, etc). Not selecting any of these could result in widgets not rendering or function correctly. See [here](https://aka.ms/PVSCIPyWidgets) for more information. Once updated you will need to restart the Kernel.","scope":"resource"},"jupyter.askForLargeDataFrames":{"type":"boolean","default":true,"description":"Warn the user before trying to open really large data frames.","scope":"application"},"jupyter.askForKernelRestart":{"type":"boolean","default":true,"description":"Warn the user before restarting a kernel."},"jupyter.exportWithOutputEnabled":{"type":"boolean","default":false,"description":"Enable exporting a python file into a jupyter notebook and run all cells when doing so.","scope":"resource"},"jupyter.jupyterLaunchTimeout":{"type":"number","default":60000,"description":"Amount of time (in ms) to wait for the Jupyter Notebook server to start."},"jupyter.jupyterLaunchRetries":{"type":"number","default":3,"description":"Number of times to attempt to connect to the Jupyter Notebook"},"jupyter.jupyterCommandLineArguments":{"type":"array","default":[],"description":"If and when a Jupyter server is started, these arguments will be passed to into the Jupyter Notebook CLI. By default this list is generated by the Jupyter Extension.","scope":"resource"},"jupyter.notebookFileRoot":{"type":"string","default":"${fileDirname}","description":"Set the root directory for running notebooks and the Interactive window.","scope":"resource"},"jupyter.searchForJupyter":{"type":"boolean","default":true,"deprecationMessage":"This setting is deprecated and will be removed in a future release.","description":"Search all installed Python interpreters for a Jupyter installation when starting the Interactive window","scope":"resource"},"jupyter.useDefaultConfigForJupyter":{"type":"boolean","default":true,"description":"When running Jupyter locally, create a default empty Jupyter config"},"jupyter.jupyterInterruptTimeout":{"type":"number","default":10000,"description":"Amount of time (in ms) to wait for an interrupt before asking to restart the Jupyter kernel."},"jupyter.sendSelectionToInteractiveWindow":{"type":"boolean","default":false,"description":"When pressing shift+enter, send selected code in a Python file to the Jupyter interactive window as opposed to the Python terminal.","deprecationMessage":"This setting has been deprecated in favor of jupyter.interactiveWindow.textEditor.executeSelection.","scope":"resource"},"jupyter.interactiveWindow.textEditor.executeSelection":{"type":"boolean","default":false,"description":"When pressing shift+enter, send selected code in a Python file to the Jupyter interactive window as opposed to the Python terminal.","scope":"resource"},"jupyter.variableExplorerExclude":{"type":"string","default":"module;function;builtin_function_or_method;ABCMeta;type;ModelMetaclass","description":"Types to exclude from showing in the Interactive variable explorer","scope":"resource"},"jupyter.codeRegularExpression":{"type":"string","default":"^(#\\s*%%|#\\s*\\|#\\s*In\\[\\d*?\\]|#\\s*In\\[ \\])","description":"Regular expression used to identify code cells. All code until the next match is considered part of this cell.","deprecationMessage":"This setting has been deprecated in favor of jupyter.interactiveWindow.cellMarker.codeRegex.","scope":"resource"},"jupyter.interactiveWindow.cellMarker.codeRegex":{"type":"string","default":"^(#\\s*%%|#\\s*\\|#\\s*In\\[\\d*?\\]|#\\s*In\\[ \\])","description":"Regular expression used to identify code cells. All code until the next match is considered part of this cell.","scope":"resource"},"jupyter.defaultCellMarker":{"type":"string","default":"# %%","description":"Cell marker used for delineating a cell in a python file.","deprecationMessage":"This setting has been deprecated in favor of jupyter.interactiveWindow.cellMarker.default","scope":"resource"},"jupyter.interactiveWindow.cellMarker.default":{"type":"string","default":"# %%","description":"Cell marker used for delineating a cell in a python file.","scope":"resource"},"jupyter.markdownRegularExpression":{"type":"string","default":"^(#\\s*%%\\s*\\[markdown\\]|#\\s*\\)","description":"Regular expression used to identify markdown cells. All comments after this expression are considered part of the markdown.","deprecationMessage":"This setting has been deprecated in favor of jupyter.interactiveWindow.cellMarker.markdownRegex.","scope":"resource"},"jupyter.interactiveWindow.cellMarker.markdownRegex":{"type":"string","default":"^(#\\s*%%\\s*\\[markdown\\]|#\\s*\\)","description":"Regular expression used to identify markdown cells. All comments after this expression are considered part of the markdown.","scope":"resource"},"jupyter.ignoreVscodeTheme":{"type":"boolean","default":false,"deprecationMessage":"This setting is deprecated and will be removed in the next release.","description":"Don't use the VS Code theme in the Interactive window (requires reload of VS Code). This forces the Interactive window to use 'Light +(default light)' and disables matplotlib defaults."},"jupyter.themeMatplotlibPlots":{"type":"boolean","default":false,"description":"In the Interactive window and Notebook Editor theme matplotlib outputs to match the VS Code editor theme."},"jupyter.decorateCells":{"type":"boolean","default":true,"description":"Draw a highlight behind the currently active cell, or all cells, in a python file.","deprecationMessage":"This setting has been deprecated in favor of jupyter.interactiveWindow.cellMarker.decorateCells.","scope":"resource"},"jupyter.interactiveWindow.cellMarker.decorateCells":{"type":"string","enum":["currentCell","allCells","None"],"default":"currentCell","description":"Draw a highlight behind the currently active cell, or all cells, in a python file.","scope":"resource"},"jupyter.enableCellCodeLens":{"type":"boolean","default":true,"description":"Enables code lens for 'cells' in a python file.","deprecationMessage":"This setting has been deprecated in favor of jupyter.interactiveWindow.codeLens.enable.","scope":"resource"},"jupyter.interactiveWindow.codeLens.enable":{"type":"boolean","default":true,"description":"Enables code lens for 'cells' in a python file.","scope":"resource"},"jupyter.enableAutoMoveToNextCell":{"type":"boolean","default":true,"description":"Enables moving to the next cell when clicking on a 'Run Cell' code lens.","deprecationMessage":"This setting has been deprecated in favor of jupyter.interactiveWindow.textEditor.autoMoveToNextCell.","scope":"resource"},"jupyter.interactiveWindow.textEditor.autoMoveToNextCell":{"type":"boolean","default":true,"description":"Enables moving to the next cell when clicking on a 'Run Cell' code lens.","scope":"resource"},"jupyter.allowUnauthorizedRemoteConnection":{"type":"boolean","default":false,"description":"Allow for connecting the Interactive window to a https Jupyter server that does not have valid certificates. This can be a security risk, so only use for known and trusted servers."},"jupyter.generateSVGPlots":{"type":"boolean","default":false,"description":"Generate SVG output for notebook plots. This allows for better display in the plot viewer at the cost of generation speed and file size.","deprecationMessage":"This setting is deprecated and will be removed in the next release.","scope":"resource"},"jupyter.codeLenses":{"type":"string","default":"jupyter.runcell, jupyter.runallcellsabove, jupyter.debugcell","description":"Set of commands to put as code lens above a cell.","deprecationMessage":"This setting has been deprecated in favor of jupyter.interactiveWindow.codeLens.commands.","scope":"resource"},"jupyter.interactiveWindow.codeLens.commands":{"type":"string","default":"jupyter.runcell, jupyter.runallcellsabove, jupyter.debugcell","description":"Set of commands to put as code lens above a cell.","scope":"resource"},"jupyter.debugCodeLenses":{"type":"string","default":"jupyter.debugcontinue, jupyter.debugstop, jupyter.debugstepover","description":"Set of debug commands to put as code lens above a cell while debugging.","deprecationMessage":"This setting has been deprecated in favor of jupyter.interactiveWindow.codeLes.debugCommands.","scope":"resource"},"jupyter.interactiveWindow.codeLes.debugCommands":{"type":"string","default":"jupyter.debugcontinue, jupyter.debugstop, jupyter.debugstepover","description":"Set of debug commands to put as code lens above a cell while debugging.","scope":"resource"},"jupyter.debugpyDistPath":{"type":"string","default":"","description":"Path to debugpy bits for debugging cells.","scope":"resource"},"jupyter.stopOnFirstLineWhileDebugging":{"type":"boolean","default":true,"description":"When debugging a cell, stop on the first line.","scope":"resource"},"jupyter.remoteDebuggerPort":{"type":"number","default":-1,"description":"When debugging a cell, open this port on the remote box. If -1 is specified, a random port between 8889 and 9000 will be attempted.","deprecationMessage":"This setting is deprecated and will be removed in the next release.","scope":"resource"},"jupyter.disableJupyterAutoStart":{"type":"boolean","default":false,"description":"When true, disables Jupyter from being automatically started for you. You must instead run a cell to start Jupyter."},"jupyter.addGotoCodeLenses":{"type":"boolean","default":true,"description":"After running a cell, add a 'Goto' code lens on the cell. Note, disabling all code lenses disables this code lens as well.","deprecationMessage":"This setting has been deprecated in favor of jupyter.interactiveWindow.codeLens.enableGotoCell.","scope":"resource"},"jupyter.interactiveWindow.codeLens.enableGotoCell":{"type":"boolean","default":true,"description":"After running a cell, add a 'Goto' code lens on the cell. Note, disabling all code lenses disables this code lens as well.","scope":"resource"},"jupyter.variableQueries":{"type":"array","markdownDescription":"Language to query mapping for returning the list of active variables in a Jupyter kernel. Used by the Variable Explorer in both the Interactive Window and Notebooks. Example:\n```\n[\n {\n \"language\": \"python\",\n \"query\": \"%who_ls\",\n \"parseExpr\": \"'(\\\\w+)'\"\n }\n]\n```","deprecationMessage":"This setting is deprecated and will be removed in the next release.","scope":"machine","examples":[[{"language":"python","query":"_rwho_ls = %who_ls\\nprint(_rwho_ls)","parseExpr":"'(\\w+)'"},{"language":"julia","query":"whos","parseExpr":"'(\\w+)'"}]]},"jupyter.kernels.excludePythonEnvironments":{"type":"array","items":{"type":"string"},"default":[],"markdownDescription":"List of Python environments to be excluded from the Kernel picker.","scope":"machine-overridable","examples":[["~/miniconda3/envs/tf/scripts/python.exe","~/miniconda3/envs/ds"]]},"jupyter.kernels.trusted":{"type":"array","items":{"type":"string"},"default":[],"markdownDescription":"Enter fully qualified paths to Kernel specification files that are to be trusted. E.g. 'C:\\Program Data\\Jupyter\\kernels\\python3\\kernel.json'. \n**Note**: Kernels can execute code with user privileges. Click [here](https://aka.ms/JupyterTrustedKernelPaths) for further details.","scope":"machine"},"jupyter.interactiveWindowMode":{"type":"string","enum":["perFile","single","multiple"],"scope":"resource","description":"Behavior of the Interactive Window. 'perFile' will create a new interactive window for every file that runs a cell. 'single' allows a single window. 'multiple' allows the creation of multiple.","deprecationMessage":"This setting has been deprecated in favor of jupyter.interactiveWindow.creationMode.","default":"multiple"},"jupyter.interactiveWindow.creationMode":{"type":"string","enum":["perFile","single","multiple"],"scope":"resource","description":"Behavior of the Interactive Window. 'perFile' will create a new interactive window for every file that runs a cell. 'single' allows a single window. 'multiple' allows the creation of multiple.","default":"multiple"},"jupyter.pythonCellFolding":{"type":"boolean","default":true,"description":"Enable folding regions for code cells in Python files. This setting requires a reload of VS Code.","deprecationMessage":"This setting has been deprecated in favor of jupyter.interactiveWindow.textEditor.cellFolding.","scope":"resource"},"jupyter.interactiveWindow.textEditor.cellFolding":{"type":"boolean","default":true,"description":"Enable folding regions for code cells in Python files. This setting requires a reload of VS Code.","scope":"resource"},"jupyter.interactiveWindowViewColumn":{"type":"string","enum":["beside","active","secondGroup"],"scope":"resource","description":"Where to open an Interactive Window that is not associated with a python file. 'beside' will open the interactive window to the right of the active editor. 'active' will open the interactive window in place of the active editor. 'secondGroup' will open the interactive window in the second editor group.","deprecationMessage":"This setting has been deprecated in favor of jupyter.interactiveWindow.viewColumn.","default":"secondGroup"},"jupyter.interactiveWindow.viewColumn":{"type":"string","enum":["beside","active","secondGroup"],"scope":"resource","description":"Where to open an Interactive Window that is not associated with a python file. 'beside' will open the interactive window to the right of the active editor. 'active' will open the interactive window in place of the active editor. 'secondGroup' will open the interactive window in the second editor group.","default":"secondGroup"},"jupyter.magicCommandsAsComments":{"type":"boolean","default":false,"description":"Uncomment shell assignments (#!), line magic (#!%) and cell magic (#!%%) when parsing code cells.","deprecationMessage":"This setting has been deprecated in favor of jupyter.interactiveWindow.textEditor.magicCommandsAsComments."},"jupyter.interactiveWindow.textEditor.magicCommandsAsComments":{"type":"boolean","default":false,"description":"Uncomment shell assignments (#!), line magic (#!%) and cell magic (#!%%) when parsing code cells."},"jupyter.pythonExportMethod":{"type":"string","enum":["direct","commentMagics","nbconvert"],"default":"direct","description":"The method to use when exporting a notebook to a Python file. 'direct' will copy over the code directly as is. 'commentMagics' will comment out lines starting with line magics (%), cell magics (%%), and shell commands(!). 'nbconvert' will install nbconvert and use that for the conversion which can translate iPython syntax into Python syntax.","scope":"application"},"jupyter.runStartupCommands":{"type":"array","default":"","description":"A series of Python instructions or iPython magic commands. Can be either an array of strings or a single string with commands separated by '\\n'. Commands will be silently executed whenever the interactive window loads. For instance, set this to '%load_ext autoreload\\n%autoreload 2' to automatically reload changes made to imported files without having to restart the interactive session.","scope":"application"},"jupyter.debugJustMyCode":{"type":"boolean","default":true,"description":"When debugging, only step through user-written code. Disable this to allow stepping into library code.","scope":"resource"},"jupyter.showOutlineButtonInNotebookToolbar":{"type":"boolean","default":true,"description":"Show the Outline button in the Jupyter notebook toolbar."},"jupyter.newCellOnRunLast":{"type":"boolean","default":true,"description":"Append a new empty cell to an interactive window file on running the currently last cell.","deprecationMessage":"This setting has been deprecated in favor of jupyter.interactiveWindow.textEditor.autoAddNewCell.","scope":"resource"},"jupyter.interactiveWindow.textEditor.autoAddNewCell":{"type":"boolean","default":true,"description":"Append a new empty cell to an interactive window file on running the currently last cell.","scope":"resource"},"jupyter.pythonCompletionTriggerCharacters":{"type":"string","default":".%'\"","description":"Characters which trigger auto completion on a python jupyter kernel.","scope":"application"},"jupyter.logKernelOutputSeparately":{"type":"boolean","default":false,"description":"Creates separate output panels for kernels/jupyter server console output"},"jupyter.excludeUserSitePackages":{"type":"boolean","default":false,"description":"Add PYTHONNOUSERSITE to kernels before starting. This prevents global/user site-packages from being used in the PYTHONPATH of the kernel.","scope":"application"},"jupyter.enableExtendedKernelCompletions":{"type":"boolean","default":false,"markdownDescription":"Enables Jedi support for extended IntelliSense completions in running Jupyter kernels (see this [setting](https://ipython.readthedocs.io/en/stable/config/options/terminal.html?highlight=use_jedi#configtrait-Completer.use_jedi)). This can greatly impact notebook cell execution performance. Use with caution.","scope":"application"}}},"languages":[{"id":"raw"},{"id":"julia","aliases":["Julia","julia"],"extensions":[".jl"]}],"notebookPreload":[{"type":"jupyter-notebook","localResourceRoots":["./temp"],"entrypoint":"./out/webviews/webview-side/ipywidgetsKernel/ipywidgetsKernel.js"},{"type":"interactive","localResourceRoots":["./temp"],"entrypoint":"./out/webviews/webview-side/ipywidgetsKernel/ipywidgetsKernel.js"}],"notebookRenderer":[{"id":"jupyter-ipywidget-renderer","entrypoint":"./out/webviews/webview-side/ipywidgetsRenderer/ipywidgetsRenderer.js","displayName":"Jupyter IPyWidget Renderer","mimeTypes":["application/vnd.jupyter.widget-view+json"],"requiresMessaging":"always"}],"viewsContainers":{"activitybar":[{"id":"jupyter","title":"Jupyter","icon":"$(notebook)"}],"panel":[{"id":"jupyter-variables","title":"Jupyter","icon":"$(notebook)"}]},"views":{"jupyter-variables":[{"type":"webview","id":"jupyterViewVariables","name":"Variables","when":"jupyter.hasNativeNotebookOrInteractiveWindowOpen"}]},"debuggers":[{"type":"Python Kernel Debug Adapter","label":"Python Kernel Debug Adapter"},{"type":"Python Interactive Window Debug Adapter","label":"Python Interactive Window"}]},"enabledApiProposals":["notebookDeprecated","notebookMessaging","notebookMime","notebookCellExecutionState","portsAttributes","quickPickSortByLabel","notebookKernelSource","interactiveWindow","notebookControllerAffinityHidden","quickPickItemTooltip","notebookExecution"],"scripts":{"package":"gulp clean && gulp prePublishBundle && vsce package -o ms-toolsai-jupyter-insiders.vsix","packagePreRelease":"gulp clean && gulp prePublishBundle && vsce package --pre-release -o ms-toolsai-jupyter-insiders.vsix","prePublishBundleStable":"cross-env IS_PRE_RELEASE_VERSION_OF_JUPYTER_EXTENSION=false gulp prePublishBundle","prePublishBundlePreRelease":"cross-env IS_PRE_RELEASE_VERSION_OF_JUPYTER_EXTENSION=true gulp prePublishBundle","prePublishNonBundle":"gulp clean && gulp prePublishNonBundle","createNycFolder":"gulp createNycFolder","validateTranslationFiles":"gulp validateTranslationFiles","compile":"tsc -watch -p ./","compile-no-watch":"tsc -p ./","compiled":"deemon npm run compile","kill-compiled":"deemon --kill npm run compile","compile-webviews-watch":"webpack --config ./build/webpack/webpack.datascience-ui.config.js --watch","compile-web-watch":"webpack --mode development --config ./build/webpack/webpack.extension.web.config.js --stats-error-details --watch --progress","compile-web":"webpack --mode development --config ./build/webpack/webpack.extension.web.config.js","compile-web-test":"cross-env VSC_TEST_BUNDLE=true npm run compile-web","compile-web-test-watch":"cross-env VSC_TEST_BUNDLE=true npm run compile-web-watch","compile-webviews-watchd":"deemon npm run compile-webviews-watch","compile-widgetTester":"cross-env NODE_OPTIONS=--max_old_space_size=9096 webpack --config ./build/webpack/webpack.datascience-ui-widgetTester.config.js --watch","kill-compile-webviews-watchd":"deemon --kill npm run compile-webviews-watch","checkDependencies":"gulp checkDependencies","postinstall":"npm run download-api && node ./build/ci/postInstall.js","installPythonLibs":"gulp installPythonLibs","test:unittests":"mocha --config ./build/.mocha.unittests.js.json ./out/**/*.unit.test.js","test:cover:report":"nyc report --reporter=text --reporter=html --reporter=text-summary --reporter=cobertura","preTestJediLSP":"node ./out/test/languageServers/jedi/lspSetup.js","testJediLSP":"node ./out/test/languageServers/jedi/lspSetup.js && cross-env CODE_TESTS_WORKSPACE=src/test VSC_JUPYTER_CI_TEST_GREP='Language Server:' node ./out/test/testBootstrap.node.js ./out/test/standardTest.node.js && node ./out/test/languageServers/jedi/lspTeardown.node.js","pretestNativeNotebooksInVSCode":"cross-env VSC_JUPYTER_CI_TEST_VSC_CHANNEL=insiders node ./out/test/datascience/dsTestSetup.js","testNativeNotebooksInVSCode":"cross-env CODE_TESTS_WORKSPACE=src/test/datascience VSC_JUPYTER_CI_TEST_VSC_CHANNEL=insiders TEST_FILES_SUFFIX=*.vscode.test,*.vscode.common.test VSC_JUPYTER_FORCE_LOGGING=1 VSC_JUPYTER_LOAD_EXPERIMENTS_FROM_FILE=true node ./out/test/testBootstrap.node.js ./out/test/standardTest.node.js","testNativeNotebooksInVSCodeWithoutTestSuffix":"cross-env CODE_TESTS_WORKSPACE=src/test/datascience VSC_JUPYTER_CI_TEST_VSC_CHANNEL=insiders VSC_JUPYTER_FORCE_LOGGING=1 VSC_JUPYTER_LOAD_EXPERIMENTS_FROM_FILE=true node ./out/test/testBootstrap.node.js ./out/test/standardTest.node.js","pretestNativeNotebooksWithoutPythonInVSCode":"cross-env VSC_JUPYTER_CI_TEST_VSC_CHANNEL=insiders node ./out/test/datascience/dsTestSetup.js","testNativeNotebooksWithoutPythonInVSCode":"cross-env CODE_TESTS_WORKSPACE=src/test/datascience VSC_JUPYTER_CI_TEST_VSC_CHANNEL=insiders TEST_FILES_SUFFIX=*.vscode.test,*.vscode.common.test VSC_JUPYTER_FORCE_LOGGING=1 VSC_JUPYTER_LOAD_EXPERIMENTS_FROM_FILE=true VSC_JUPYTER_CI_TEST_GREP=@nonPython VSC_JUPYTER_CI_TEST_DO_NOT_INSTALL_PYTHON_EXT=true node ./out/test/testBootstrap.node.js ./out/test/standardTest.node.js","testNativeNotebooksAndWebviews":"cross-env CODE_TESTS_WORKSPACE=src/test/datascience VSC_JUPYTER_CI_TEST_VSC_CHANNEL=insiders TEST_FILES_SUFFIX=*.vscode.test,*.vscode.common.test VSC_JUPYTER_FORCE_LOGGING=1 VSC_JUPYTER_CI_TEST_GREP=webview-test VSC_JUPYTER_LOAD_EXPERIMENTS_FROM_FILE=true node ./out/test/testBootstrap.node.js ./out/test/standardTest.node.js","testWebExtension":"node ./build/launchWebTest.js","launchWebExtension":"node ./build/launchWeb.js","testSmoke":"node ./out/test/testBootstrap.node.js ./out/test/smokeTest.node.js","testSmokeLogged":"cross-env VSC_JUPYTER_FORCE_LOGGING=true node --no-force-async-hooks-checks ./out/test/testBootstrap.node.js ./out/test/smokeTest.node.js","lint":"eslint -c .eslintrc.js --ext .ts --ext .tsx src","prettier-fix":"prettier 'src/**/*.ts*' --write && prettier 'build/**/*.js' --write","clean":"gulp clean","updateBuildNumber":"gulp updateBuildNumber","webpack":"webpack","download-api":"vscode-dts dev","postdownload-api":"vscode-dts main","generateTelemetry":"gulp generateTelemetry","openInBrowser":"vscode-test-web --extensionDevelopmentPath=. ./src/test/datascience","startJupyterServer":"node build/preDebugWebTest.js","stopJupyterServer":"node build/postDebugWebTest.js","validateTelemetry":"gulp validateTelemetry","verifyUnhandledErrors":"gulp verifyUnhandledErrors","printTestResults":"gulp printTestResults","setup-precommit-hook":"husky install","webpack-analyze:node":"npx webpack --json --config build/webpack/webpack.extension.node.config.js > out/stats-node.json && yarn webpack-bundle-analyzer out/stats-node.json","webpack-analyze:web":"npx webpack --json --config build/webpack/webpack.extension.web.config.js > out/stats-web.json && yarn webpack-bundle-analyzer out/stats-web.json"},"dependencies":{"@enonic/fnv-plus":"^1.3.0","@fluentui/react":"^7.160.1","@jupyter-widgets/base":"4.0.0","@jupyter-widgets/controls":"3.0.0","@jupyter-widgets/schema":"0.4.0","@jupyterlab/coreutils":"5.1.17","@jupyterlab/nbformat":"3.1.17","@jupyterlab/services":"6.1.17","@lumino/widgets":"^1.28.0","@nteract/messaging":"^7.0.0","@vscode/extension-telemetry":"^0.7.7","@vscode/jupyter-lsp-middleware":"^0.2.50","ajv-keywords":"^3.5.2","ansi-to-html":"^0.6.7","bootstrap":"^4.3.1","bootstrap-less":"^3.3.8","cross-fetch":"^3.1.5","decompress-response":"^4.2.0","encoding":"^0.1.13","fast-deep-equal":"^2.0.1","format-util":"^1.0.5","fs-extra":"^4.0.3","glob":"^7.1.2","iconv-lite":"^0.6.3","inversify":"^6.0.1","isomorphic-ws":"^4.0.1","jquery":"^3.6.0","jsonc-parser":"^2.0.3","lodash":"^4.17.21","marked":"^4.0.10","node-fetch":"^2.6.7","node-gyp-build":"^4.6.0","node-stream-zip":"^1.6.0","pdfkit":"^0.13.0","pidtree":"^0.6.0","portfinder":"^1.0.25","re-resizable":"~6.5.5","react":"^16.5.2","react-data-grid":"^6.0.2-0","react-dom":"^16.5.2","react-redux":"^7.1.1","react-svg-pan-zoom":"3.9.0","react-svgmt":"1.1.11","react-virtualized":"^9.21.1","redux":"^4.0.4","redux-logger":"^3.0.6","reflect-metadata":"^0.1.12","rxjs":"^6.5.4","rxjs-compat":"^6.5.4","safe-buffer":"^5.2.1","sanitize-filename":"^1.6.3","semver":"^5.7.2","slickgrid":"^2.4.17","source-map":"^0.7.3","stack-trace":"0.0.10","string-argv":"^0.3.1","strip-comments":"^2.0.1","styled-components":"^5.2.1","sudo-prompt":"^9.2.1","svg-inline-react":"^3.1.0","svg-to-pdfkit":"^0.1.8","tcp-port-used":"^1.0.1","tmp":"^0.0.29","uint64be":"^1.0.1","underscore":"^1.12.1","url-parse":"^1.5.10","uuid":"^3.3.2","vscode-debugprotocol":"^1.41.0","vscode-jsonrpc":"8.0.2-next.1","vscode-languageclient":"8.0.2-next.5","vscode-languageserver":"8.0.2-next.5","vscode-languageserver-protocol":"3.17.2-next.6","vscode-tas-client":"^0.1.63","ws":"^6.2.2","zeromq":"^6.0.0-beta.16","zeromqold":"npm:zeromq@^6.0.0-beta.6"},"devDependencies":{"@actions/core":"^1.9.1","@actions/github":"^4.0.0","@actions/glob":"^0.3.0","@babel/polyfill":"^7.4.4","@istanbuljs/nyc-config-typescript":"^1.0.2","@sinonjs/fake-timers":"^6.0.1","@types/ansi-regex":"^4.0.0","@types/chai":"^4.1.2","@types/chai-arrays":"^1.0.2","@types/chai-as-promised":"^7.1.0","@types/copy-webpack-plugin":"^6.0.0","@types/cors":"^2.8.6","@types/debug":"^4.1.5","@types/dedent":"^0.7.0","@types/del":"^4.0.0","@types/enzyme":"^3.1.14","@types/enzyme-adapter-react-16":"^1.0.3","@types/event-stream":"^3.3.33","@types/format-util":"^1.0.2","@types/fs-extra":"^5.0.1","@types/get-port":"^3.2.0","@types/glob":"^5.0.35","@types/html-webpack-plugin":"^3.2.0","@types/jsdom":"^21.1.1","@types/json2csv":"^5.0.3","@types/loadable__component":"^5.10.0","@types/loader-utils":"^1.1.3","@types/lodash":"^4.14.104","@types/memoize-one":"^4.1.1","@types/mocha":"^9.1.0","@types/nock":"^10.0.3","@types/node":"^16.18.6","@types/node-fetch":"^2.5.7","@types/pdfkit":"^0.11.0","@types/promisify-node":"^0.4.0","@types/react":"^16.4.14","@types/react-dom":"^16.0.8","@types/react-json-tree":"^0.6.8","@types/react-redux":"^7.1.5","@types/react-virtualized":"^9.21.2","@types/redux-logger":"^3.0.7","@types/semver":"^5.5.0","@types/shortid":"^0.0.29","@types/sinon":"^10.0.15","@types/sinonjs__fake-timers":"^6.0.1","@types/stack-trace":"0.0.29","@types/strip-comments":"^2.0.1","@types/svg-to-pdfkit":"^0.1.0","@types/tcp-port-used":"^1.0.0","@types/temp":"^0.8.32","@types/tmp":"^0.2.3","@types/url-parse":"^1.4.8","@types/uuid":"^3.4.3","@types/uuid-to-hex":"^1.1.0","@types/vscode-notebook-renderer":"^1.60.0","@types/webpack-bundle-analyzer":"^2.13.0","@types/webpack-env":"^1.18.1","@types/ws":"^6.0.1","@typescript-eslint/eslint-plugin":"^5.47.0","@typescript-eslint/eslint-plugin-tslint":"^5.47.0","@typescript-eslint/parser":"^5.47.0","@vscode/test-electron":"^2.2.0","@vscode/test-web":"^0.0.29","@vscode/zeromq":"^0.1.6","acorn":"^8.9.0","babel-polyfill":"^6.26.0","bufferutil":"^4.0.6","chai":"^4.3.7","chai-arrays":"^2.2.0","chai-as-promised":"^7.1.1","chai-exclude":"^2.1.0","clean-terminal-webpack-plugin":"^3.0.0","codecov":"^3.7.1","colors":"^1.4.0","copy-webpack-plugin":"^11.0.0","cross-env":"^7.0.3","cross-spawn":"^7.0.3","css-loader":"^6.8.1","dedent":"^0.7.0","deemon":"^1.4.0","del":"^3.0.0","enzyme":"^3.7.0","enzyme-adapter-react-16":"^1.6.0","es-abstract":"^1.19.1","es5-ext":"^0.10.53","eslint":"^8.43.0","eslint-config-airbnb":"^19.0.4","eslint-config-prettier":"^8.8.0","eslint-plugin-header":"^3.1.1","eslint-plugin-import":"^2.27.5","eslint-plugin-jsdoc":"^46.4.2","eslint-plugin-jsx-a11y":"^6.7.1","eslint-plugin-local-rules":"file:build/eslint-rules","eslint-plugin-no-null":"^1.0.2","eslint-plugin-no-only-tests":"^3.1.0","eslint-plugin-prefer-arrow":"^1.2.3","eslint-plugin-prettier":"^4.2.1","eslint-plugin-react":"^7.32.2","eslint-plugin-react-hooks":"^4.6.0","expose-loader":"^4.1.0","flat":"^5.0.1","fork-ts-checker-webpack-plugin":"^8.0.0","get-port":"^3.2.0","glob-parent":"^6.0.2","gulp":"^4.0.2","gulp-filter":"^7.0.0","gulp-rename":"^2.0.0","gulp-typescript":"^6.0.0-alpha.1","html-webpack-plugin":"^5.5.3","husky":"^8.0.3","jsdom":"^22.1.0","json2csv":"^5.0.7","jsonschema":"^1.4.1","keyv":"^4.1.0","less":"^4.1.3","less-loader":"^11.1.3","less-plugin-inline-urls":"^1.2.0","lolex":"^6.0.0","lru-cache":"^10.0.0","mocha":"^10.2.0","mocha-junit-reporter":"^2.2.0","mocha-multi-reporters":"^1.5.1","nock":"^13.3.1","node-has-native-dependencies":"^1.0.2","nyc":"^15.1.0","path-browserify":"^1.0.1","popper.js":"^1.16.1","postcss":"^8.4.24","postcss-import":"^15.1.0","postcss-loader":"^7.3.3","postcss-preset-env":"^8.5.1","prettier":"^2.8.8","relative":"^3.0.2","remove-files-webpack-plugin":"^1.5.0","rewiremock":"^3.14.5","rimraf":"^5.0.1","screenshot-desktop":"^1.14.0","sinon":"^15.2.0","source-map-support":"^0.5.21","style-loader":"^3.3.3","svg-inline-loader":"^0.8.2","thread-loader":"^4.0.2","transform-loader":"^0.2.4","ts-loader":"^9.2.8","ts-mock-imports":"^1.3.0","ts-mockito":"^2.6.1","tsconfig-paths-webpack-plugin":"^3.2.0","typemoq":"^2.1.0","typescript":"^5.0.2","unicode-properties":"^1.3.1","utf-8-validate":"^5.0.8","util":"^0.12.4","uuid-to-hex":"^1.1.1","vscode-dts":"^0.3.2","webpack":"^5.88.1","webpack-bundle-analyzer":"^4.9.0","webpack-cli":"^5.1.4","yargs":"^17.7.2","yargs-parser":"^21.1.1"},"optionalDependencies":{"canvas":"^2.7.0","fsevents":"^2.3.2"},"overrides":{"json5":"2.2.2","string_decoder":"1.3.0","simple-get@<3.1.1":"3.1.1","validator@<13.7.0":"13.7.0","jpeg-js@<0.4.4":"0.4.4","playwright-core":{"jpeg-js":"0.4.4"},"terser@<5.14.2":"5.14.2","glob-parent@<5.1.2":"5.1.2","jquery-ui@<1.13.2":"1.13.2","@jupyterlab/coreutils":{"url-parse":"$url-parse"},"d3-color":"3.1.0"}},"location":{"$mid":1,"path":"/home/linuxbrew/app/code-server/extensions/ms-toolsai.jupyter-2023.7.100-universal","scheme":"file"},"isBuiltin":false,"targetPlatform":"universal","metadata":{"id":"6c2f1801-1e7f-45b2-9b5c-7782f1e076e8","publisherId":"ac8eb7c9-3e59-4b39-8040-f0484d8170ce","publisherDisplayName":"ms-toolsai","targetPlatform":"universal","updated":false,"isPreReleaseVersion":false,"installedTimestamp":1695869203696,"preRelease":false},"isValid":true,"validations":[]}]} \ No newline at end of file +{"input":{"location":{"$mid":1,"fsPath":"/home/linuxbrew/app/code-server/extensions/extensions.json","external":"file:///home/linuxbrew/app/code-server/extensions/extensions.json","path":"/home/linuxbrew/app/code-server/extensions/extensions.json","scheme":"file"},"mtime":1695928797000,"profile":true,"profileScanOptions":{"bailOutWhenFileNotFound":true},"type":1,"excludeObsolete":true,"validate":true,"productVersion":"1.82.2","productDate":"2023-09-22T09:29:25.764Z","productCommit":"abd2f3db4bdb28f9e95536dfa84d8479f1eb312d","devMode":false,"language":"en","translations":{}},"result":[{"type":1,"identifier":{"id":"ms-python.python","uuid":"f1f59ae4-9318-4f3c-a9b5-81b2eaa5f8a5"},"manifest":{"name":"python","displayName":"Python","description":"IntelliSense (Pylance), Linting, Debugging (multi-threaded, remote), code formatting, refactoring, unit tests, and more.","version":"2023.16.0","featureFlags":{"usingNewInterpreterStorage":true},"capabilities":{"untrustedWorkspaces":{"supported":"limited","description":"Only Partial IntelliSense with Pylance is supported. Cannot execute Python with untrusted files."},"virtualWorkspaces":{"supported":"limited","description":"Only Partial IntelliSense supported."}},"publisher":"ms-python","enabledApiProposals":["contribEditorContentMenu","quickPickSortByLabel","envShellEvent","testObserver","quickPickItemTooltip","saveEditor"],"author":{"name":"Microsoft Corporation"},"license":"MIT","homepage":"https://github.com/Microsoft/vscode-python","repository":{"type":"git","url":"https://github.com/Microsoft/vscode-python"},"bugs":{"url":"https://github.com/Microsoft/vscode-python/issues"},"qna":"https://github.com/microsoft/vscode-python/discussions/categories/q-a","icon":"icon.png","galleryBanner":{"color":"#1e415e","theme":"dark"},"engines":{"vscode":"^1.82.0-20230830"},"enableTelemetry":false,"keywords":["python","django","unittest","multi-root ready"],"categories":["Programming Languages","Debuggers","Linters","Formatters","Other","Data Science","Machine Learning"],"activationEvents":["onDebugInitialConfigurations","onLanguage:python","onDebugDynamicConfigurations:python","onDebugResolve:python","onWalkthrough:pythonWelcome","onWalkthrough:pythonWelcome2","onWalkthrough:pythonDataScienceWelcome","workspaceContains:mspythonconfig.json","workspaceContains:pyproject.toml","workspaceContains:Pipfile","workspaceContains:setup.py","workspaceContains:requirements.txt","workspaceContains:manage.py","workspaceContains:app.py"],"main":"./out/client/extension","browser":"./dist/extension.browser.js","l10n":"./l10n","contributes":{"walkthroughs":[{"id":"pythonWelcome","title":"Get Started with Python Development","description":"Your first steps to set up a Python project with all the powerful tools and features that the Python extension has to offer!","when":"workspacePlatform != webworker","steps":[{"id":"python.createPythonFile","title":"Create a Python file","description":"[Open](command:toSide:workbench.action.files.openFile) or [create](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22python%22%7D) a Python file - make sure to save it as \".py\".\n[Create Python File](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22python%22%7D)","media":{"svg":"resources/walkthrough/open-folder.svg","altText":"Open a Python file or a folder with a Python project."},"when":""},{"id":"python.installPythonWin8","title":"Install Python","description":"The Python Extension requires Python to be installed. Install Python [from python.org](https://www.python.org/downloads).\n\n[Install Python](https://www.python.org/downloads)\n","media":{"markdown":"resources/walkthrough/install-python-windows-8.md"},"when":"workspacePlatform == windows && showInstallPythonTile"},{"id":"python.installPythonMac","title":"Install Python","description":"The Python Extension requires Python to be installed. Install Python 3 through the terminal.\n[Install Python via Brew](command:python.installPythonOnMac)\n","media":{"markdown":"resources/walkthrough/install-python-macos.md"},"when":"workspacePlatform == mac && showInstallPythonTile","command":"workbench.action.terminal.new"},{"id":"python.installPythonLinux","title":"Install Python","description":"The Python Extension requires Python to be installed. Install Python 3 through the terminal.\n[Install Python via terminal](command:python.installPythonOnLinux)\n","media":{"markdown":"resources/walkthrough/install-python-linux.md"},"when":"workspacePlatform == linux && showInstallPythonTile","command":"workbench.action.terminal.new"},{"id":"python.selectInterpreter","title":"Select a Python Interpreter","description":"Choose which Python interpreter/environment you want to use for your Python project.\n[Select Python Interpreter](command:python.setInterpreter)\n**Tip**: Run the ``Python: Select Interpreter`` command in the [Command Palette](command:workbench.action.showCommands).","media":{"svg":"resources/walkthrough/python-interpreter.svg","altText":"Selecting a Python interpreter from the status bar"},"when":"workspaceFolderCount == 0"},{"id":"python.createEnvironment","title":"Create a Python Environment ","description":"Create an environment for your Python project.\n[Create Environment](command:python.createEnvironment)\n**Tip**: Run the ``Python: Create Environment`` command in the [Command Palette](command:workbench.action.showCommands).\n 🔍 Check out our [docs](https://aka.ms/pythonenvs) to learn more.","media":{"svg":"resources/walkthrough/create-environment.svg","altText":"Creating a Python environment from the Command Palette"},"when":"workspaceFolderCount > 0"},{"id":"python.runAndDebug","title":"Run and debug your Python file","description":"Open your Python file and click on the play button on the top right of the editor, or press F5 when on the file and select \"Python File\" to run with the debugger. \n \n[Learn more](https://code.visualstudio.com/docs/python/python-tutorial#_run-hello-world)","media":{"svg":"resources/walkthrough/rundebug2.svg","altText":"How to run and debug in VS Code with F5 or the play button on the top right."},"when":""},{"id":"python.learnMoreWithDS","title":"Explore more resources","description":"🎨 Explore all the features the Python extension has to offer by looking for \"Python\" in the [Command Palette](command:workbench.action.showCommands). \n 📈 Learn more about getting started with [data science](command:workbench.action.openWalkthrough?%7B%22category%22%3A%22ms-python.python%23pythonDataScienceWelcome%22%2C%22step%22%3A%22ms-python.python%23python.createNewNotebook%22%7D) in Python. \n ✨ Take a look at our [Release Notes](https://aka.ms/AA8dxtb) to learn more about the latest features. \n \n[Learn More](https://aka.ms/AA8dqti)","media":{"altText":"Image representing our documentation page and mailing list resources.","svg":"resources/walkthrough/learnmore.svg"},"when":""}]},{"id":"pythonWelcome2","title":"Get Started with Python Development","description":"Your first steps to set up a Python project with all the powerful tools and features that the Python extension has to offer!","when":"false","steps":[{"id":"python.createPythonFolder","title":"Open a Python project folder","description":"[Open](command:workbench.action.files.openFolder) or create a project folder.\n[Open Project Folder](command:workbench.action.files.openFolder)","media":{"svg":"resources/walkthrough/open-folder.svg","altText":"Open a Python file or a folder with a Python project."},"when":"workspaceFolderCount = 0"},{"id":"python.createPythonFile","title":"Create a Python file","description":"[Open](command:toSide:workbench.action.files.openFile) or [create](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22python%22%7D) a Python file - make sure to save it as \".py\".\n[Create Python File](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22python%22%7D)","media":{"svg":"resources/walkthrough/open-folder.svg","altText":"Open a Python file or a folder with a Python project."},"when":""},{"id":"python.installPythonWin8","title":"Install Python","description":"The Python Extension requires Python to be installed. Install Python [from python.org](https://www.python.org/downloads).\n\n[Install Python](https://www.python.org/downloads)\n","media":{"markdown":"resources/walkthrough/install-python-windows-8.md"},"when":"workspacePlatform == windows && showInstallPythonTile"},{"id":"python.installPythonMac","title":"Install Python","description":"The Python Extension requires Python to be installed. Install Python 3 through the terminal.\n[Install Python via Brew](command:python.installPythonOnMac)\n","media":{"markdown":"resources/walkthrough/install-python-macos.md"},"when":"workspacePlatform == mac && showInstallPythonTile","command":"workbench.action.terminal.new"},{"id":"python.installPythonLinux","title":"Install Python","description":"The Python Extension requires Python to be installed. Install Python 3 through the terminal.\n[Install Python via terminal](command:python.installPythonOnLinux)\n","media":{"markdown":"resources/walkthrough/install-python-linux.md"},"when":"workspacePlatform == linux && showInstallPythonTile","command":"workbench.action.terminal.new"},{"id":"python.createEnvironment2","title":"Create or select a Python Environment ","description":"Create an environment for your Python project or use [Select Python Interpreter](command:python.setInterpreter) to select an existing one.\n[Create Environment](command:python.createEnvironment)\n**Tip**: Run the ``Python: Create Environment`` command in the [Command Palette](command:workbench.action.showCommands).","media":{"markdown":"resources/walkthrough/environments-info.md"},"when":""},{"id":"python.runAndDebug","title":"Run and debug your Python file","description":"Open your Python file and click on the play button on the top right of the editor, or press F5 when on the file and select \"Python File\" to run with the debugger. \n \n[Learn more](https://code.visualstudio.com/docs/python/python-tutorial#_run-hello-world)","media":{"svg":"resources/walkthrough/rundebug2.svg","altText":"How to run and debug in VS Code with F5 or the play button on the top right."},"when":""},{"id":"python.learnMoreWithDS2","title":"Explore more resources","description":"🎨 Explore all the features the Python extension has to offer by looking for \"Python\" in the [Command Palette](command:workbench.action.showCommands). \n 📈 Learn more about getting started with [data science](command:workbench.action.openWalkthrough?%7B%22category%22%3A%22ms-python.python%23pythonDataScienceWelcome%22%2C%22step%22%3A%22ms-python.python%23python.createNewNotebook%22%7D) in Python. \n ✨ Take a look at our [Release Notes](https://aka.ms/AA8dxtb) to learn more about the latest features. \n \n[Follow along with the Python Tutorial](https://aka.ms/AA8dqti)","media":{"altText":"Image representing our documentation page and mailing list resources.","svg":"resources/walkthrough/learnmore.svg"},"when":""}]},{"id":"pythonDataScienceWelcome","title":"Get Started with Python for Data Science","description":"Your first steps to getting started with a Data Science project with Python!","when":"false","steps":[{"id":"python.installJupyterExt","title":"Install Jupyter extension","description":"If you haven't already, install the [Jupyter extension](command:workbench.extensions.search?\"ms-toolsai.jupyter\") to take full advantage of notebooks experiences in VS Code!\n \n[Search Jupyter extension](command:workbench.extensions.search?\"ms-toolsai.jupyter\")","media":{"svg":"resources/walkthrough/data-science.svg","altText":"Creating a new Jupyter notebook"}},{"id":"python.createNewNotebook","title":"Create or open a Jupyter Notebook","description":"Right click in the file explorer and create a new file with an .ipynb extension. Or, open the [Command Palette](command:workbench.action.showCommands) and run the command \n``Jupyter: Create New Blank Notebook``.\n[Create new Jupyter Notebook](command:toSide:jupyter.createnewnotebook)\n If you have an existing project, you can also [open a folder](command:workbench.action.files.openFolder) and/or clone a project from GitHub: [clone a Git repository](command:git.clone).","media":{"svg":"resources/walkthrough/create-notebook.svg","altText":"Creating a new Jupyter notebook"},"completionEvents":["onCommand:jupyter.createnewnotebook","onCommand:workbench.action.files.openFolder","onCommand:workbench.action.files.openFileFolder"]},{"id":"python.openInteractiveWindow","title":"Open the Python Interactive Window","description":"The Python Interactive Window is a Python shell where you can execute and view the results of your Python code. You can create cells on a Python file by typing ``#%%``.\n \nTo open the interactive window anytime, open the [Command Palette](command:workbench.action.showCommands) and run the command \n``Jupyter: Create Interactive Window``.\n[Open Interactive Window](command:jupyter.createnewinteractive)","media":{"svg":"resources/walkthrough/interactive-window.svg","altText":"Opening Python interactive window"},"completionEvents":["onCommand:jupyter.createnewinteractive"]},{"id":"python.dataScienceLearnMore","title":"Find out more!","description":"📒 Take a look into the [Jupyter extension](command:workbench.extensions.search?\"ms-toolsai.jupyter\") features, by looking for \"Jupyter\" in the [Command Palette](command:workbench.action.showCommands). \n 🏃🏻 Find out more features in our [Tutorials](https://aka.ms/AAdjzpd). \n[Learn more](https://aka.ms/AAdar6q)","media":{"svg":"resources/walkthrough/learnmore.svg","altText":"Image representing our documentation page and mailing list resources."}}]}],"breakpoints":[{"language":"html"},{"language":"jinja"},{"language":"python"},{"language":"django-html"},{"language":"django-txt"}],"commands":[{"title":"New Python File","shortTitle":"Python File","category":"Python","command":"python.createNewFile"},{"category":"Python","command":"python.analysis.restartLanguageServer","title":"Restart Language Server"},{"category":"Python","command":"python.clearCacheAndReload","title":"Clear Cache and Reload Window"},{"category":"Python","command":"python.clearWorkspaceInterpreter","title":"Clear Workspace Interpreter Setting"},{"category":"Python","command":"python.configureTests","title":"Configure Tests"},{"category":"Python","command":"python.createTerminal","title":"Create Terminal"},{"category":"Python","command":"python.createEnvironment","title":"Create Environment..."},{"category":"Python","command":"python.createEnvironment-button","title":"Create Environment..."},{"category":"Python","command":"python.enableLinting","title":"Enable/Disable Linting"},{"category":"Python","command":"python.enableSourceMapSupport","title":"Enable Source Map Support For Extension Debugging"},{"category":"Python","command":"python.execInTerminal","title":"Run Python File in Terminal"},{"category":"Python","command":"python.execInTerminal-icon","icon":"$(play)","title":"Run Python File"},{"category":"Python","command":"python.execInDedicatedTerminal","icon":"$(play)","title":"Run Python File in Dedicated Terminal"},{"category":"Python","command":"python.debugInTerminal","icon":"$(debug-alt)","title":"Debug Python File"},{"category":"Python","command":"python.execSelectionInDjangoShell","title":"Run Selection/Line in Django Shell"},{"category":"Python","command":"python.execSelectionInTerminal","title":"Run Selection/Line in Python Terminal"},{"category":"Python","command":"python.launchTensorBoard","title":"Launch TensorBoard"},{"category":"Python","command":"python.refreshTensorBoard","enablement":"python.hasActiveTensorBoardSession","icon":"$(refresh)","title":"Refresh TensorBoard"},{"category":"Python","command":"python.reportIssue","title":"Report Issue..."},{"category":"Test","command":"testing.reRunFailTests","icon":"$(run-errors)","title":"Rerun Failed Tests"},{"category":"Python","command":"python.runLinting","title":"Run Linting"},{"category":"Python","command":"python.setInterpreter","title":"Select Interpreter"},{"category":"Python","command":"python.setLinter","title":"Select Linter"},{"category":"Python Refactor","command":"python.sortImports","title":"Sort Imports"},{"category":"Python","command":"python.startREPL","title":"Start REPL"},{"category":"Python","command":"python.viewLanguageServerOutput","enablement":"python.hasLanguageServerOutputChannel","title":"Show Language Server Output"},{"category":"Python","command":"python.viewOutput","icon":{"dark":"resources/dark/repl.svg","light":"resources/light/repl.svg"},"title":"Show Output"},{"category":"Python","command":"python.installJupyter","title":"Install the Jupyter extension"}],"configuration":{"properties":{"python.activeStateToolPath":{"default":"state","description":"Path to the State Tool executable for ActiveState runtimes (version 0.36+).","scope":"machine-overridable","type":"string"},"python.autoComplete.extraPaths":{"default":[],"description":"List of paths to libraries and the like that need to be imported by auto complete engine. E.g. when using Google App SDK, the paths are not in system path, hence need to be added into this list.","scope":"resource","type":"array","uniqueItems":true},"python.createEnvironment.contentButton":{"default":"show","markdownDescription":"Show or hide Create Environment button in the editor for `requirements.txt` or other dependency files.","scope":"machine-overridable","type":"string","enum":["show","hide"],"tags":["experimental"]},"python.condaPath":{"default":"","description":"Path to the conda executable to use for activation (version 4.4+).","scope":"machine","type":"string"},"python.defaultInterpreterPath":{"default":"python","markdownDescription":"Path to default Python to use when extension loads up for the first time, no longer used once an interpreter is selected for the workspace. See [here](https://aka.ms/AAfekmf) to understand when this is used","scope":"machine-overridable","type":"string"},"python.diagnostics.sourceMapsEnabled":{"default":false,"description":"Enable source map support for meaningful stack traces in error logs.","scope":"application","type":"boolean"},"python.envFile":{"default":"${workspaceFolder}/.env","description":"Absolute path to a file containing environment variable definitions.","scope":"resource","type":"string"},"python.experiments.enabled":{"default":true,"description":"Enables A/B tests experiments in the Python extension. If enabled, you may get included in proposed enhancements and/or features.","scope":"machine","type":"boolean"},"python.experiments.optInto":{"default":[],"markdownDescription":"List of experiment to opt into. If empty, user is assigned the default experiment groups. See [here](https://github.com/microsoft/vscode-python/wiki/AB-Experiments) for more details.","items":{"enum":["All","pythonSurveyNotification","pythonPromptNewToolsExt","pythonTerminalEnvVarActivation","pythonTestAdapter"],"enumDescriptions":["Combined list of all experiments.","Denotes the Python Survey Notification experiment.","Denotes the Python Prompt New Tools Extension experiment.","Enables use of environment variables to activate terminals instead of sending activation commands.","Denotes the Python Test Adapter experiment."]},"scope":"machine","type":"array","uniqueItems":true},"python.experiments.optOutFrom":{"default":[],"markdownDescription":"List of experiment to opt out of. If empty, user is assigned the default experiment groups. See [here](https://github.com/microsoft/vscode-python/wiki/AB-Experiments) for more details.","items":{"enum":["All","pythonSurveyNotification","pythonPromptNewToolsExt","pythonTerminalEnvVarActivation","pythonTestAdapter"],"enumDescriptions":["Combined list of all experiments.","Denotes the Python Survey Notification experiment.","Denotes the Python Prompt New Tools Extension experiment.","Enables use of environment variables to activate terminals instead of sending activation commands.","Denotes the Python Test Adapter experiment."]},"scope":"machine","type":"array","uniqueItems":true},"python.formatting.autopep8Args":{"default":[],"description":"Arguments passed in. Each argument is a separate item in the array.","items":{"type":"string"},"scope":"resource","type":"array","markdownDeprecationMessage":"This setting will soon be deprecated. Please use the [Autopep8 extension](https://marketplace.visualstudio.com/items?itemName=ms-python.autopep8).
Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"This setting will soon be deprecated. Please use the Autopep8 extension. Learn more here: https://aka.ms/AAlgvkb."},"python.formatting.autopep8Path":{"default":"autopep8","description":"Path to autopep8, you can use a custom version of autopep8 by modifying this setting to include the full path.","scope":"machine-overridable","type":"string","markdownDeprecationMessage":"This setting will soon be deprecated. Please use the [Autopep8 extension](https://marketplace.visualstudio.com/items?itemName=ms-python.autopep8).
Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"This setting will soon be deprecated. Please use the Autopep8 extension. Learn more here: https://aka.ms/AAlgvkb."},"python.formatting.blackArgs":{"default":[],"description":"Arguments passed in. Each argument is a separate item in the array.","items":{"type":"string"},"scope":"resource","type":"array","markdownDeprecationMessage":"This setting will soon be deprecated. Please use the [Black Formatter extension](https://marketplace.visualstudio.com/items?itemName=ms-python.black-formatter).
Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"This setting will soon be deprecated. Please use the Black Formatter extension. Learn more here: https://aka.ms/AAlgvkb."},"python.formatting.blackPath":{"default":"black","description":"Path to Black, you can use a custom version of Black by modifying this setting to include the full path.","scope":"machine-overridable","type":"string","markdownDeprecationMessage":"This setting will soon be deprecated. Please use the [Black Formatter extension](https://marketplace.visualstudio.com/items?itemName=ms-python.black-formatter).
Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"This setting will soon be deprecated. Please use the Black Formatter extension. Learn more here: https://aka.ms/AAlgvkb."},"python.formatting.provider":{"default":"autopep8","description":"Provider for formatting. Possible options include 'autopep8', 'black', and 'yapf'.","enum":["autopep8","black","none","yapf"],"scope":"resource","type":"string","markdownDeprecationMessage":"This setting will soon be deprecated. Please use the [Autopep8 extension](https://marketplace.visualstudio.com/items?itemName=ms-python.autopep8) or the [Black Formatter extension](https://marketplace.visualstudio.com/items?itemName=ms-python.black-formatter).
Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"This setting will soon be deprecated. Please use the Autopep8 extension or the Black Formatter extension. Learn more here: https://aka.ms/AAlgvkb."},"python.formatting.yapfArgs":{"default":[],"description":"Arguments passed in. Each argument is a separate item in the array.","items":{"type":"string"},"scope":"resource","type":"array","markdownDeprecationMessage":"Yapf support will soon be deprecated. Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"Yapf support will soon be deprecated. Learn more here: https://aka.ms/AAlgvkb."},"python.formatting.yapfPath":{"default":"yapf","description":"Path to yapf, you can use a custom version of yapf by modifying this setting to include the full path.","scope":"machine-overridable","type":"string","markdownDeprecationMessage":"Yapf support will soon be deprecated.
Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"Yapf support will soon be deprecated. Learn more here: https://aka.ms/AAlgvkb."},"python.globalModuleInstallation":{"default":false,"description":"Whether to install Python modules globally when not using an environment.","scope":"resource","type":"boolean"},"python.languageServer":{"default":"Default","description":"Defines type of the language server.","enum":["Default","Jedi","Pylance","None"],"enumDescriptions":["Automatically select a language server: Pylance if installed and available, otherwise fallback to Jedi.","Use Jedi behind the Language Server Protocol (LSP) as a language server.","Use Pylance as a language server.","Disable language server capabilities."],"scope":"window","type":"string"},"python.linting.banditArgs":{"default":[],"description":"Arguments passed in. Each argument is a separate item in the array.","items":{"type":"string"},"scope":"resource","type":"array","markdownDeprecationMessage":"Bandit support will soon be deprecated. Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"Bandit support will soon be deprecated. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.banditEnabled":{"default":false,"description":"Whether to lint Python files using bandit.","scope":"resource","type":"boolean","markdownDeprecationMessage":"Bandit support will soon be deprecated. Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"Bandit support will soon be deprecated. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.banditPath":{"default":"bandit","description":"Path to bandit, you can use a custom version of bandit by modifying this setting to include the full path.","scope":"machine-overridable","type":"string","markdownDeprecationMessage":"Bandit support will soon be deprecated. Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"Bandit support will soon be deprecated. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.cwd":{"default":null,"description":"Optional working directory for linters.","scope":"resource","type":"string","markdownDeprecationMessage":"This setting will soon be deprecated. Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"This setting will soon be deprecated. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.enabled":{"default":true,"description":"Whether to lint Python files.","scope":"resource","type":"boolean","markdownDeprecationMessage":"This setting will soon be deprecated. Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"This setting will soon be deprecated. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.flake8Args":{"default":[],"description":"Arguments passed in. Each argument is a separate item in the array.","items":{"type":"string"},"scope":"resource","type":"array","markdownDeprecationMessage":"This setting will soon be deprecated. Please use the [Flake8 extension](https://marketplace.visualstudio.com/items?itemName=ms-python.flake8).
Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"This setting will soon be deprecated. Please use the Flake8 extension. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.flake8CategorySeverity.E":{"default":"Error","description":"Severity of Flake8 message type 'E'.","enum":["Error","Hint","Information","Warning"],"scope":"resource","type":"string","markdownDeprecationMessage":"This setting will soon be deprecated. Please use the [Flake8 extension](https://marketplace.visualstudio.com/items?itemName=ms-python.flake8).
Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"This setting will soon be deprecated. Please use the Flake8 extension. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.flake8CategorySeverity.F":{"default":"Error","description":"Severity of Flake8 message type 'F'.","enum":["Error","Hint","Information","Warning"],"scope":"resource","type":"string","markdownDeprecationMessage":"This setting will soon be deprecated. Please use the [Flake8 extension](https://marketplace.visualstudio.com/items?itemName=ms-python.flake8).
Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"This setting will soon be deprecated. Please use the Flake8 extension. Learn more here: https://aka.ms/AAlgvkb."},"python.interpreter.infoVisibility":{"default":"onPythonRelated","description":"Controls when to display information of selected interpreter in the status bar.","enum":["never","onPythonRelated","always"],"enumDescriptions":["Never display information.","Only display information if Python-related files are opened.","Always display information."],"scope":"machine","type":"string"},"python.linting.flake8CategorySeverity.W":{"default":"Warning","description":"Severity of Flake8 message type 'W'.","enum":["Error","Hint","Information","Warning"],"scope":"resource","type":"string","markdownDeprecationMessage":"This setting will soon be deprecated. Please use the [Flake8 extension](https://marketplace.visualstudio.com/items?itemName=ms-python.flake8).
Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"This setting will soon be deprecated. Please use the Flake8 extension. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.flake8Enabled":{"default":false,"description":"Whether to lint Python files using flake8.","scope":"resource","type":"boolean","markdownDeprecationMessage":"This setting will soon be deprecated. Please use the [Flake8 extension](https://marketplace.visualstudio.com/items?itemName=ms-python.flake8).
Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"This setting will soon be deprecated. Please use the Flake8 extension. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.flake8Path":{"default":"flake8","description":"Path to flake8, you can use a custom version of flake8 by modifying this setting to include the full path.","scope":"machine-overridable","type":"string","markdownDeprecationMessage":"This setting will soon be deprecated. Please use the [Flake8 extension](https://marketplace.visualstudio.com/items?itemName=ms-python.flake8).
Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"This setting will soon be deprecated. Please use the Flake8 extension. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.ignorePatterns":{"default":["**/site-packages/**/*.py",".vscode/*.py"],"description":"Patterns used to exclude files or folders from being linted.","items":{"type":"string"},"scope":"resource","type":"array","uniqueItems":true,"markdownDeprecationMessage":"This setting will soon be deprecated. Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"This setting will soon be deprecated. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.lintOnSave":{"default":true,"description":"Whether to lint Python files when saved.","scope":"resource","type":"boolean","markdownDeprecationMessage":"This setting will soon be deprecated. Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"This setting will soon be deprecated. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.maxNumberOfProblems":{"default":100,"description":"Controls the maximum number of problems produced by the server.","scope":"resource","type":"number","markdownDeprecationMessage":"This setting will soon be deprecated. Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"This setting will soon be deprecated. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.mypyArgs":{"default":["--follow-imports=silent","--ignore-missing-imports","--show-column-numbers","--no-pretty"],"description":"Arguments passed in. Each argument is a separate item in the array.","items":{"type":"string"},"scope":"resource","type":"array","markdownDeprecationMessage":"This setting will soon be deprecated. Please use the [Mypy Type Checker extension](https://marketplace.visualstudio.com/items?itemName=ms-python.mypy-type-checker).
Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"This setting will soon be deprecated. Please use the Mypy Type Checker extension. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.mypyCategorySeverity.error":{"default":"Error","description":"Severity of Mypy message type 'Error'.","enum":["Error","Hint","Information","Warning"],"scope":"resource","type":"string","markdownDeprecationMessage":"This setting will soon be deprecated. Please use the [Mypy Type Checker extension](https://marketplace.visualstudio.com/items?itemName=ms-python.mypy-type-checker).
Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"This setting will soon be deprecated. Please use the Mypy Type Checker extension. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.mypyCategorySeverity.note":{"default":"Information","description":"Severity of Mypy message type 'Note'.","enum":["Error","Hint","Information","Warning"],"scope":"resource","type":"string","markdownDeprecationMessage":"This setting will soon be deprecated. Please use the [Mypy Type Checker extension](https://marketplace.visualstudio.com/items?itemName=ms-python.mypy-type-checker).
Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"This setting will soon be deprecated. Please use the Mypy Type Checker extension. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.mypyEnabled":{"default":false,"description":"Whether to lint Python files using mypy.","scope":"resource","type":"boolean","markdownDeprecationMessage":"This setting will soon be deprecated. Please use the [Mypy Type Checker extension](https://marketplace.visualstudio.com/items?itemName=ms-python.mypy-type-checker).
Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"This setting will soon be deprecated. Please use the Mypy Type Checker extension. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.mypyPath":{"default":"mypy","description":"Path to mypy, you can use a custom version of mypy by modifying this setting to include the full path.","scope":"machine-overridable","type":"string","markdownDeprecationMessage":"This setting will soon be deprecated. Please use the [Mypy Type Checker extension](https://marketplace.visualstudio.com/items?itemName=ms-python.mypy-type-checker).
Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"This setting will soon be deprecated. Please use the Mypy Type Checker extension. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.prospectorArgs":{"default":[],"description":"Arguments passed in. Each argument is a separate item in the array.","items":{"type":"string"},"scope":"resource","type":"array","markdownDeprecationMessage":"Prospector support will soon be deprecated. Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"Prospector support will soon be deprecated. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.prospectorEnabled":{"default":false,"description":"Whether to lint Python files using prospector.","scope":"resource","type":"boolean","markdownDeprecationMessage":"Prospector support will soon be deprecated. Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"Prospector support will soon be deprecated. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.prospectorPath":{"default":"prospector","description":"Path to Prospector, you can use a custom version of prospector by modifying this setting to include the full path.","scope":"machine-overridable","type":"string","markdownDeprecationMessage":"Prospector support will soon be deprecated. Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"Prospector support will soon be deprecated. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.pycodestyleArgs":{"default":[],"description":"Arguments passed in. Each argument is a separate item in the array.","items":{"type":"string"},"scope":"resource","type":"array","markdownDeprecationMessage":"Pycodestyle support will soon be deprecated. Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"Pycodestyle support will soon be deprecated. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.pycodestyleCategorySeverity.E":{"default":"Error","description":"Severity of pycodestyle message type 'E'.","enum":["Error","Hint","Information","Warning"],"scope":"resource","type":"string","markdownDeprecationMessage":"Pycodestyle support will soon be deprecated. Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"Pycodestyle support will soon be deprecated. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.pycodestyleCategorySeverity.W":{"default":"Warning","description":"Severity of pycodestyle message type 'W'.","enum":["Error","Hint","Information","Warning"],"scope":"resource","type":"string","markdownDeprecationMessage":"Pycodestyle support will soon be deprecated. Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"Pycodestyle support will soon be deprecated. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.pycodestyleEnabled":{"default":false,"description":"Whether to lint Python files using pycodestyle.","scope":"resource","type":"boolean","markdownDeprecationMessage":"Pycodestyle support will soon be deprecated. Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"Pycodestyle support will soon be deprecated. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.pycodestylePath":{"default":"pycodestyle","description":"Path to pycodestyle, you can use a custom version of pycodestyle by modifying this setting to include the full path.","scope":"machine-overridable","type":"string","markdownDeprecationMessage":"Pycodestyle support will soon be deprecated. Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"Pycodestyle support will soon be deprecated. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.pydocstyleArgs":{"default":[],"description":"Arguments passed in. Each argument is a separate item in the array.","items":{"type":"string"},"scope":"resource","type":"array","markdownDeprecationMessage":"Pydocstyle support will soon be deprecated. Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"Pydocstyle support will soon be deprecated. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.pydocstyleEnabled":{"default":false,"description":"Whether to lint Python files using pydocstyle.","scope":"resource","type":"boolean","markdownDeprecationMessage":"Pydocstyle support will soon be deprecated. Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"Pydocstyle support will soon be deprecated. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.pydocstylePath":{"default":"pydocstyle","description":"Path to pydocstyle, you can use a custom version of pydocstyle by modifying this setting to include the full path.","scope":"machine-overridable","type":"string","markdownDeprecationMessage":"Pydocstyle support will soon be deprecated. Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"Pydocstyle support will soon be deprecated. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.pylamaArgs":{"default":[],"description":"Arguments passed in. Each argument is a separate item in the array.","items":{"type":"string"},"scope":"resource","type":"array","markdownDeprecationMessage":"Pylama support will soon be deprecated. Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"Pylama support will soon be deprecated. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.pylamaEnabled":{"default":false,"description":"Whether to lint Python files using pylama.","scope":"resource","type":"boolean","markdownDeprecationMessage":"Pylama support will soon be deprecated. Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"Pylama support will soon be deprecated. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.pylamaPath":{"default":"pylama","description":"Path to pylama, you can use a custom version of pylama by modifying this setting to include the full path.","scope":"machine-overridable","type":"string","markdownDeprecationMessage":"Pylama support will soon be deprecated. Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"Pylama support will soon be deprecated. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.pylintArgs":{"default":[],"description":"Arguments passed in. Each argument is a separate item in the array.","items":{"type":"string"},"scope":"resource","type":"array","markdownDeprecationMessage":"This setting will soon be deprecated. Please use the [Pylint extension](https://marketplace.visualstudio.com/items?itemName=ms-python.pylint).
Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"This setting will soon be deprecated. Please use the Pylint extension. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.pylintCategorySeverity.convention":{"default":"Information","description":"Severity of Pylint message type 'Convention/C'.","enum":["Error","Hint","Information","Warning"],"scope":"resource","type":"string","markdownDeprecationMessage":"This setting will soon be deprecated. Please use the [Pylint extension](https://marketplace.visualstudio.com/items?itemName=ms-python.pylint).
Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"This setting will soon be deprecated. Please use the Pylint extension. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.pylintCategorySeverity.error":{"default":"Error","description":"Severity of Pylint message type 'Error/E'.","enum":["Error","Hint","Information","Warning"],"scope":"resource","type":"string","markdownDeprecationMessage":"This setting will soon be deprecated. Please use the [Pylint extension](https://marketplace.visualstudio.com/items?itemName=ms-python.pylint).
Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"This setting will soon be deprecated. Please use the Pylint extension. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.pylintCategorySeverity.fatal":{"default":"Error","description":"Severity of Pylint message type 'Error/F'.","enum":["Error","Hint","Information","Warning"],"scope":"resource","type":"string","markdownDeprecationMessage":"This setting will soon be deprecated. Please use the [Pylint extension](https://marketplace.visualstudio.com/items?itemName=ms-python.pylint).
Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"This setting will soon be deprecated. Please use the Pylint extension. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.pylintCategorySeverity.refactor":{"default":"Hint","description":"Severity of Pylint message type 'Refactor/R'.","enum":["Error","Hint","Information","Warning"],"scope":"resource","type":"string","markdownDeprecationMessage":"This setting will soon be deprecated. Please use the [Pylint extension](https://marketplace.visualstudio.com/items?itemName=ms-python.pylint).
Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"This setting will soon be deprecated. Please use the Pylint extension. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.pylintCategorySeverity.warning":{"default":"Warning","description":"Severity of Pylint message type 'Warning/W'.","enum":["Error","Hint","Information","Warning"],"scope":"resource","type":"string","markdownDeprecationMessage":"This setting will soon be deprecated. Please use the [Pylint extension](https://marketplace.visualstudio.com/items?itemName=ms-python.pylint).
Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"This setting will soon be deprecated. Please use the Pylint extension. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.pylintEnabled":{"default":false,"description":"Whether to lint Python files using pylint.","scope":"resource","type":"boolean","markdownDeprecationMessage":"This setting will soon be deprecated. Please use the [Pylint extension](https://marketplace.visualstudio.com/items?itemName=ms-python.pylint).
Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"This setting will soon be deprecated. Please use the Pylint extension. Learn more here: https://aka.ms/AAlgvkb."},"python.linting.pylintPath":{"default":"pylint","description":"Path to Pylint, you can use a custom version of pylint by modifying this setting to include the full path.","scope":"machine-overridable","type":"string","markdownDeprecationMessage":"This setting will soon be deprecated. Please use the [Pylint extension](https://marketplace.visualstudio.com/items?itemName=ms-python.pylint).
Learn more [here](https://aka.ms/AAlgvkb).","deprecationMessage":"This setting will soon be deprecated. Please use the Pylint extension. Learn more here: https://aka.ms/AAlgvkb."},"python.logging.level":{"default":"error","deprecationMessage":"This setting is deprecated. Please use command `Developer: Set Log Level...` to set logging level.","description":"The logging level the extension logs at, defaults to 'error'","enum":["debug","error","info","off","warn"],"scope":"machine","type":"string"},"python.missingPackage.severity":{"default":"Hint","description":"Set severity of missing packages in requirements.txt or pyproject.toml","enum":["Error","Hint","Information","Warning"],"scope":"resource","type":"string","tags":["experimental"]},"python.pipenvPath":{"default":"pipenv","description":"Path to the pipenv executable to use for activation.","scope":"machine-overridable","type":"string"},"python.poetryPath":{"default":"poetry","description":"Path to the poetry executable.","scope":"machine-overridable","type":"string"},"python.sortImports.args":{"default":[],"description":"Arguments passed in. Each argument is a separate item in the array.","items":{"type":"string"},"scope":"resource","type":"array","deprecationMessage":"This setting will be removed soon. Use 'isort.args' instead."},"python.sortImports.path":{"default":"","description":"Path to isort script, default using inner version","scope":"machine-overridable","type":"string","deprecationMessage":"This setting will be removed soon. Use 'isort.path' instead."},"python.tensorBoard.logDirectory":{"default":"","description":"Set this setting to your preferred TensorBoard log directory to skip log directory prompt when starting TensorBoard.","scope":"resource","type":"string"},"python.terminal.activateEnvInCurrentTerminal":{"default":false,"description":"Activate Python Environment in the current Terminal on load of the Extension.","scope":"resource","type":"boolean"},"python.terminal.activateEnvironment":{"default":true,"description":"Activate Python Environment in all Terminals created.","scope":"resource","type":"boolean"},"python.terminal.executeInFileDir":{"default":false,"description":"When executing a file in the terminal, whether to use execute in the file's directory, instead of the current open folder.","scope":"resource","type":"boolean"},"python.terminal.focusAfterLaunch":{"default":false,"description":"When launching a python terminal, whether to focus the cursor on the terminal.","scope":"resource","type":"boolean"},"python.terminal.launchArgs":{"default":[],"description":"Python launch arguments to use when executing a file in the terminal.","scope":"resource","type":"array"},"python.testing.autoTestDiscoverOnSaveEnabled":{"default":true,"description":"Enable auto run test discovery when saving a test file.","scope":"resource","type":"boolean"},"python.testing.cwd":{"default":null,"description":"Optional working directory for tests.","scope":"resource","type":"string"},"python.testing.debugPort":{"default":3000,"description":"Port number used for debugging of tests.","scope":"resource","type":"number"},"python.testing.promptToConfigure":{"default":true,"description":"Prompt to configure a test framework if potential tests directories are discovered.","scope":"resource","type":"boolean"},"python.testing.pytestArgs":{"default":[],"description":"Arguments passed in. Each argument is a separate item in the array.","items":{"type":"string"},"scope":"resource","type":"array"},"python.testing.pytestEnabled":{"default":false,"description":"Enable testing using pytest.","scope":"resource","type":"boolean"},"python.testing.pytestPath":{"default":"pytest","description":"Path to pytest (pytest), you can use a custom version of pytest by modifying this setting to include the full path.","scope":"machine-overridable","type":"string"},"python.testing.unittestArgs":{"default":["-v","-s",".","-p","*test*.py"],"description":"Arguments passed in. Each argument is a separate item in the array.","items":{"type":"string"},"scope":"resource","type":"array"},"python.testing.unittestEnabled":{"default":false,"description":"Enable testing using unittest.","scope":"resource","type":"boolean"},"python.venvFolders":{"default":[],"description":"Folders in your home directory to look into for virtual environments (supports pyenv, direnv and virtualenvwrapper by default).","items":{"type":"string"},"scope":"machine","type":"array","uniqueItems":true},"python.venvPath":{"default":"","description":"Path to folder with a list of Virtual Environments (e.g. ~/.pyenv, ~/Envs, ~/.virtualenvs).","scope":"machine","type":"string"}},"title":"Python","type":"object"},"debuggers":[{"configurationAttributes":{"attach":{"properties":{"connect":{"label":"Attach by connecting to debugpy over a socket.","properties":{"host":{"default":"127.0.0.1","description":"Hostname or IP address to connect to.","type":"string"},"port":{"description":"Port to connect to.","type":"number"}},"required":["port"],"type":"object"},"debugAdapterPath":{"description":"Path (fully qualified) to the python debug adapter executable.","type":"string"},"django":{"default":false,"description":"Django debugging.","type":"boolean"},"host":{"default":"127.0.0.1","description":"Hostname or IP address to connect to.","type":"string"},"jinja":{"default":null,"description":"Jinja template debugging (e.g. Flask).","enum":[false,null,true]},"justMyCode":{"default":true,"description":"If true, show and debug only user-written code. If false, show and debug all code, including library calls.","type":"boolean"},"listen":{"label":"Attach by listening for incoming socket connection from debugpy","properties":{"host":{"default":"127.0.0.1","description":"Hostname or IP address of the interface to listen on.","type":"string"},"port":{"description":"Port to listen on.","type":"number"}},"required":["port"],"type":"object"},"logToFile":{"default":false,"description":"Enable logging of debugger events to a log file.","type":"boolean"},"pathMappings":{"default":[],"items":{"label":"Path mapping","properties":{"localRoot":{"default":"${workspaceFolder}","label":"Local source root.","type":"string"},"remoteRoot":{"default":"","label":"Remote source root.","type":"string"}},"required":["localRoot","remoteRoot"],"type":"object"},"label":"Path mappings.","type":"array"},"port":{"description":"Port to connect to.","type":"number"},"processId":{"anyOf":[{"default":"${command:pickProcess}","description":"Use process picker to select a process to attach, or Process ID as integer.","enum":["${command:pickProcess}"]},{"description":"ID of the local process to attach to.","type":"integer"}]},"redirectOutput":{"default":true,"description":"Redirect output.","type":"boolean"},"showReturnValue":{"default":true,"description":"Show return value of functions when stepping.","type":"boolean"},"subProcess":{"default":false,"description":"Whether to enable Sub Process debugging","type":"boolean"}}},"launch":{"properties":{"args":{"default":[],"description":"Command line arguments passed to the program.","items":{"type":"string"},"type":["array","string"]},"autoReload":{"default":{},"description":"Configures automatic reload of code on edit.","properties":{"enable":{"default":false,"description":"Automatically reload code on edit.","type":"boolean"},"exclude":{"default":["**/.git/**","**/.metadata/**","**/__pycache__/**","**/node_modules/**","**/site-packages/**"],"description":"Glob patterns of paths to exclude from auto reload.","items":{"type":"string"},"type":"array"},"include":{"default":["**/*.py","**/*.pyw"],"description":"Glob patterns of paths to include in auto reload.","items":{"type":"string"},"type":"array"}},"type":"object"},"console":{"default":"integratedTerminal","description":"Where to launch the debug target: internal console, integrated terminal, or external terminal.","enum":["externalTerminal","integratedTerminal","internalConsole"]},"cwd":{"default":"${workspaceFolder}","description":"Absolute path to the working directory of the program being debugged. Default is the root directory of the file (leave empty).","type":"string"},"debugAdapterPath":{"description":"Path (fully qualified) to the python debug adapter executable.","type":"string"},"django":{"default":false,"description":"Django debugging.","type":"boolean"},"env":{"additionalProperties":{"type":"string"},"default":{},"description":"Environment variables defined as a key value pair. Property ends up being the Environment Variable and the value of the property ends up being the value of the Env Variable.","type":"object"},"envFile":{"default":"${workspaceFolder}/.env","description":"Absolute path to a file containing environment variable definitions.","type":"string"},"gevent":{"default":false,"description":"Enable debugging of gevent monkey-patched code.","type":"boolean"},"host":{"default":"localhost","description":"IP address of the of the local debug server (default is localhost).","type":"string"},"jinja":{"default":null,"description":"Jinja template debugging (e.g. Flask).","enum":[false,null,true]},"justMyCode":{"default":true,"description":"Debug only user-written code.","type":"boolean"},"logToFile":{"default":false,"description":"Enable logging of debugger events to a log file.","type":"boolean"},"module":{"default":"","description":"Name of the module to be debugged.","type":"string"},"pathMappings":{"default":[],"items":{"label":"Path mapping","properties":{"localRoot":{"default":"${workspaceFolder}","label":"Local source root.","type":"string"},"remoteRoot":{"default":"","label":"Remote source root.","type":"string"}},"required":["localRoot","remoteRoot"],"type":"object"},"label":"Path mappings.","type":"array"},"port":{"default":0,"description":"Debug port (default is 0, resulting in the use of a dynamic port).","type":"number"},"program":{"default":"${file}","description":"Absolute path to the program.","type":"string"},"purpose":{"default":[],"description":"Tells extension to use this configuration for test debugging, or when using debug-in-terminal command.","items":{"enum":["debug-test","debug-in-terminal"],"enumDescriptions":["Use this configuration while debugging tests using test view or test debug commands.","Use this configuration while debugging a file using debug in terminal button in the editor."]},"type":"array"},"pyramid":{"default":false,"description":"Whether debugging Pyramid applications","type":"boolean"},"python":{"default":"${command:python.interpreterPath}","description":"Absolute path to the Python interpreter executable; overrides workspace configuration if set.","type":"string"},"pythonArgs":{"default":[],"description":"Command-line arguments passed to the Python interpreter. To pass arguments to the debug target, use \"args\".","items":{"type":"string"},"type":"array"},"redirectOutput":{"default":true,"description":"Redirect output.","type":"boolean"},"showReturnValue":{"default":true,"description":"Show return value of functions when stepping.","type":"boolean"},"stopOnEntry":{"default":false,"description":"Automatically stop after launch.","type":"boolean"},"subProcess":{"default":false,"description":"Whether to enable Sub Process debugging","type":"boolean"},"sudo":{"default":false,"description":"Running debug program under elevated permissions (on Unix).","type":"boolean"}}}},"configurationSnippets":[],"label":"Python","languages":["python"],"type":"python","variables":{"pickProcess":"python.pickLocalProcess"},"when":"!virtualWorkspace && shellExecutionSupported"}],"grammars":[{"language":"pip-requirements","path":"./syntaxes/pip-requirements.tmLanguage.json","scopeName":"source.pip-requirements"}],"jsonValidation":[{"fileMatch":".condarc","url":"./schemas/condarc.json"},{"fileMatch":"environment.yml","url":"./schemas/conda-environment.json"},{"fileMatch":"meta.yaml","url":"./schemas/conda-meta.json"}],"keybindings":[{"command":"python.execSelectionInTerminal","key":"shift+enter","when":"editorTextFocus && editorLangId == python && !findInputFocussed && !replaceInputFocussed && !jupyter.ownsSelection && !notebookEditorFocused"},{"command":"python.refreshTensorBoard","key":"ctrl+r","mac":"cmd+r","when":"python.hasActiveTensorBoardSession"}],"languages":[{"aliases":["Jinja"],"extensions":[".j2",".jinja2"],"id":"jinja"},{"aliases":["pip requirements","requirements.txt"],"configuration":"./languages/pip-requirements.json","filenamePatterns":["**/*requirements*.{txt, in}","**/*constraints*.txt","**/requirements/*.{txt,in}","**/constraints/*.txt"],"filenames":["constraints.txt","requirements.in","requirements.txt"],"id":"pip-requirements"},{"filenames":[".condarc"],"id":"yaml"},{"filenames":[".flake8",".pep8",".pylintrc",".pypirc"],"id":"ini"},{"filenames":["Pipfile","poetry.lock"],"id":"toml"},{"filenames":["Pipfile.lock"],"id":"json"}],"menus":{"commandPalette":[{"category":"Python","command":"python.analysis.restartLanguageServer","title":"Restart Language Server","when":"!virtualWorkspace && shellExecutionSupported && editorLangId == python"},{"category":"Python","command":"python.clearCacheAndReload","title":"Clear Cache and Reload Window","when":"!virtualWorkspace && shellExecutionSupported"},{"category":"Python","command":"python.clearWorkspaceInterpreter","title":"Clear Workspace Interpreter Setting","when":"!virtualWorkspace && shellExecutionSupported"},{"category":"Python","command":"python.configureTests","title":"Configure Tests","when":"!virtualWorkspace && shellExecutionSupported"},{"category":"Python","command":"python.createEnvironment","title":"Create Environment...","when":"!virtualWorkspace && shellExecutionSupported"},{"category":"Python","command":"python.createEnvironment-button","title":"Create Environment...","when":"false"},{"category":"Python","command":"python.createTerminal","title":"Create Terminal","when":"!virtualWorkspace && shellExecutionSupported"},{"category":"Python","command":"python.enableLinting","title":"Enable/Disable Linting","when":"!virtualWorkspace && shellExecutionSupported && editorLangId == python"},{"category":"Python","command":"python.enableSourceMapSupport","title":"Enable Source Map Support For Extension Debugging","when":"!virtualWorkspace && shellExecutionSupported"},{"category":"Python","command":"python.execInTerminal","title":"Run Python File in Terminal","when":"!virtualWorkspace && shellExecutionSupported && editorLangId == python"},{"category":"Python","command":"python.execInTerminal-icon","icon":"$(play)","title":"Run Python File","when":"false"},{"category":"Python","command":"python.execInDedicatedTerminal","icon":"$(play)","title":"Run Python File in Dedicated Terminal","when":"false"},{"category":"Python","command":"python.debugInTerminal","icon":"$(debug-alt)","title":"Debug Python File","when":"!virtualWorkspace && shellExecutionSupported && editorLangId == python"},{"category":"Python","command":"python.execSelectionInDjangoShell","title":"Run Selection/Line in Django Shell","when":"!virtualWorkspace && shellExecutionSupported && editorLangId == python"},{"category":"Python","command":"python.execSelectionInTerminal","title":"Run Selection/Line in Python Terminal","when":"!virtualWorkspace && shellExecutionSupported && editorLangId == python"},{"category":"Python","command":"python.launchTensorBoard","title":"Launch TensorBoard","when":"!virtualWorkspace && shellExecutionSupported"},{"category":"Python","command":"python.refreshTensorBoard","enablement":"python.hasActiveTensorBoardSession","icon":"$(refresh)","title":"Refresh TensorBoard","when":"!virtualWorkspace && shellExecutionSupported"},{"category":"Python","command":"python.reportIssue","title":"Report Issue...","when":"!virtualWorkspace && shellExecutionSupported"},{"category":"Test","command":"testing.reRunFailTests","icon":"$(run-errors)","title":"Rerun Failed Tests","when":"!virtualWorkspace && shellExecutionSupported"},{"category":"Python","command":"python.runLinting","title":"Run Linting","when":"!virtualWorkspace && shellExecutionSupported && editorLangId == python"},{"category":"Python","command":"python.setInterpreter","title":"Select Interpreter","when":"!virtualWorkspace && shellExecutionSupported"},{"category":"Python","command":"python.setLinter","title":"Select Linter","when":"!virtualWorkspace && shellExecutionSupported && editorLangId == python"},{"category":"Python Refactor","command":"python.sortImports","title":"Sort Imports","when":"!virtualWorkspace && shellExecutionSupported && editorLangId == python"},{"category":"Python","command":"python.startREPL","title":"Start REPL","when":"!virtualWorkspace && shellExecutionSupported"},{"category":"Python","command":"python.viewLanguageServerOutput","enablement":"python.hasLanguageServerOutputChannel","title":"Show Language Server Output","when":"!virtualWorkspace && shellExecutionSupported"},{"category":"Python","command":"python.viewOutput","title":"Show Output","when":"!virtualWorkspace && shellExecutionSupported"}],"editor/content":[{"group":"Python","command":"python.createEnvironment-button","when":"showCreateEnvButton && resourceLangId == pip-requirements && !virtualWorkspace && shellExecutionSupported && !inDiffEditor && !isMergeResultEditor && pythonDepsNotInstalled"},{"group":"Python","command":"python.createEnvironment-button","when":"showCreateEnvButton && resourceFilename == pyproject.toml && pipInstallableToml && !virtualWorkspace && shellExecutionSupported && !inDiffEditor && !isMergeResultEditor && pythonDepsNotInstalled"}],"editor/context":[{"submenu":"python.run","group":"Python","when":"editorLangId == python && !virtualWorkspace && shellExecutionSupported && isWorkspaceTrusted"},{"command":"python.sortImports","group":"Refactor","title":"Sort Imports","when":"editorLangId == python && !notebookEditorFocused && !virtualWorkspace && shellExecutionSupported"},{"submenu":"python.runFileInteractive","group":"Jupyter2","when":"editorLangId == python && !virtualWorkspace && shellExecutionSupported && !isJupyterInstalled && isWorkspaceTrusted"}],"python.runFileInteractive":[{"command":"python.installJupyter","group":"Jupyter2","when":"resourceLangId == python && !virtualWorkspace && shellExecutionSupported"}],"python.run":[{"command":"python.execInTerminal","group":"Python","when":"resourceLangId == python && !virtualWorkspace && shellExecutionSupported"},{"command":"python.execSelectionInDjangoShell","group":"Python","when":"editorHasSelection && editorLangId == python && python.isDjangoProject && !virtualWorkspace && shellExecutionSupported"},{"command":"python.execSelectionInTerminal","group":"Python","when":"editorFocus && editorLangId == python && !virtualWorkspace && shellExecutionSupported"}],"editor/title":[{"command":"python.refreshTensorBoard","group":"navigation@0","when":"python.hasActiveTensorBoardSession && !virtualWorkspace && shellExecutionSupported"}],"editor/title/run":[{"command":"python.execInTerminal-icon","group":"navigation@0","title":"Run Python File","when":"resourceLangId == python && !isInDiffEditor && !virtualWorkspace && shellExecutionSupported"},{"command":"python.execInDedicatedTerminal","group":"navigation@0","title":"Run Python File in Dedicated Terminal","when":"resourceLangId == python && !isInDiffEditor && !virtualWorkspace && shellExecutionSupported"},{"command":"python.debugInTerminal","group":"navigation@1","title":"Debug Python File","when":"resourceLangId == python && !isInDiffEditor && !virtualWorkspace && shellExecutionSupported"}],"explorer/context":[{"command":"python.execInTerminal","group":"Python","when":"resourceLangId == python && !virtualWorkspace && shellExecutionSupported"}],"file/newFile":[{"command":"python.createNewFile","group":"file","when":"!virtualWorkspace"}],"view/title":[{"command":"testing.reRunFailTests","when":"view == workbench.view.testing && hasFailedTests && !virtualWorkspace && shellExecutionSupported","group":"navigation@1"}]},"submenus":[{"id":"python.run","label":"Run Python","icon":"$(play)"},{"id":"python.runFileInteractive","label":"Run in Interactive window"}],"viewsWelcome":[{"view":"testing","contents":"Configure a test framework to see your tests here.\n[Configure Python Tests](command:python.configureTests)","when":"!virtualWorkspace && shellExecutionSupported"}],"yamlValidation":[{"fileMatch":".condarc","url":"./schemas/condarc.json"},{"fileMatch":"environment.yml","url":"./schemas/conda-environment.json"},{"fileMatch":"meta.yaml","url":"./schemas/conda-meta.json"}]},"scripts":{"package":"gulp clean && gulp prePublishBundle && vsce package -o ms-python-insiders.vsix","prePublish":"gulp clean && gulp prePublishNonBundle","compile":"tsc -watch -p ./","compiled":"deemon npm run compile","kill-compiled":"deemon --kill npm run compile","checkDependencies":"gulp checkDependencies","test":"node ./out/test/standardTest.js && node ./out/test/multiRootTest.js","test:unittests":"mocha --config ./build/.mocha.unittests.json","test:unittests:cover":"nyc --no-clean --nycrc-path ./build/.nycrc mocha --config ./build/.mocha.unittests.json","test:functional":"mocha --require source-map-support/register --config ./build/.mocha.functional.json","test:functional:perf":"node --inspect-brk ./node_modules/mocha/bin/_mocha --require source-map-support/register --config ./build/.mocha.functional.perf.json","test:functional:memleak":"node --inspect-brk ./node_modules/mocha/bin/_mocha --require source-map-support/register --config ./build/.mocha.functional.json","test:functional:cover":"nyc --no-clean --nycrc-path ./build/.nycrc mocha --require source-map-support/register --config ./build/.mocha.functional.json","test:cover:report":"nyc --nycrc-path ./build/.nycrc report --reporter=text --reporter=html --reporter=text-summary --reporter=cobertura","testDebugger":"node ./out/test/testBootstrap.js ./out/test/debuggerTest.js","testDebugger:cover":"nyc --no-clean --use-spawn-wrap --nycrc-path ./build/.nycrc --require source-map-support/register node ./out/test/debuggerTest.js","testSingleWorkspace":"node ./out/test/testBootstrap.js ./out/test/standardTest.js","testSingleWorkspace:cover":"nyc --no-clean --use-spawn-wrap --nycrc-path ./build/.nycrc --require source-map-support/register node ./out/test/standardTest.js","preTestJediLSP":"node ./out/test/languageServers/jedi/lspSetup.js","testJediLSP":"node ./out/test/languageServers/jedi/lspSetup.js && cross-env CODE_TESTS_WORKSPACE=src/test VSC_PYTHON_CI_TEST_GREP='Language Server:' node ./out/test/testBootstrap.js ./out/test/standardTest.js && node ./out/test/languageServers/jedi/lspTeardown.js","testMultiWorkspace":"node ./out/test/testBootstrap.js ./out/test/multiRootTest.js","testPerformance":"node ./out/test/testBootstrap.js ./out/test/performanceTest.js","testSmoke":"cross-env INSTALL_JUPYTER_EXTENSION=true \"node ./out/test/smokeTest.js\"","testInsiders":"cross-env VSC_PYTHON_CI_TEST_VSC_CHANNEL=insiders INSTALL_PYLANCE_EXTENSION=true TEST_FILES_SUFFIX=insiders.test CODE_TESTS_WORKSPACE=src/testMultiRootWkspc/smokeTests \"node ./out/test/standardTest.js\"","lint-staged":"node gulpfile.js","lint":"eslint --ext .ts,.js src build pythonExtensionApi","lint-fix":"eslint --fix --ext .ts,.js src build pythonExtensionApi gulpfile.js","format-check":"prettier --check 'src/**/*.ts' 'build/**/*.js' '.github/**/*.yml' gulpfile.js","format-fix":"prettier --write 'src/**/*.ts' 'build/**/*.js' '.github/**/*.yml' gulpfile.js","clean":"gulp clean","addExtensionPackDependencies":"gulp addExtensionPackDependencies","updateBuildNumber":"gulp updateBuildNumber","verifyBundle":"gulp verifyBundle","webpack":"webpack"},"dependencies":{"@iarna/toml":"^2.2.5","@vscode/extension-telemetry":"^0.7.7","@vscode/jupyter-lsp-middleware":"^0.2.50","arch":"^2.1.0","diff-match-patch":"^1.0.0","fs-extra":"^10.0.1","glob":"^7.2.0","hash.js":"^1.1.7","iconv-lite":"^0.6.3","inversify":"^5.0.4","jsonc-parser":"^3.0.0","lodash":"^4.17.21","md5":"^2.2.1","minimatch":"^5.0.1","named-js-regexp":"^1.3.3","node-stream-zip":"^1.6.0","reflect-metadata":"^0.1.12","rxjs":"^6.5.4","rxjs-compat":"^6.5.4","semver":"^7.5.2","stack-trace":"0.0.10","sudo-prompt":"^9.2.1","tmp":"^0.0.33","uint64be":"^3.0.0","unicode":"^14.0.0","untildify":"^4.0.0","vscode-debugadapter":"^1.28.0","vscode-debugprotocol":"^1.28.0","vscode-jsonrpc":"8.0.2-next.1","vscode-languageclient":"^8.1.0","vscode-languageserver":"^8.1.0","vscode-languageserver-protocol":"^3.17.3","vscode-tas-client":"^0.1.63","which":"^2.0.2","winreg":"^1.2.4","xml2js":"^0.5.0"},"devDependencies":{"@istanbuljs/nyc-config-typescript":"^1.0.2","@types/bent":"^7.3.0","@types/chai":"^4.1.2","@types/chai-arrays":"^2.0.0","@types/chai-as-promised":"^7.1.0","@types/diff-match-patch":"^1.0.32","@types/download":"^8.0.1","@types/fs-extra":"^9.0.13","@types/glob":"^7.2.0","@types/lodash":"^4.14.104","@types/md5":"^2.1.32","@types/mocha":"^9.1.0","@types/nock":"^10.0.3","@types/node":"^16.17.0","@types/semver":"^5.5.0","@types/shortid":"^0.0.29","@types/sinon":"^10.0.11","@types/stack-trace":"0.0.29","@types/tmp":"^0.0.33","@types/uuid":"^8.3.4","@types/vscode":"^1.81.0","@types/which":"^2.0.1","@types/winreg":"^1.2.30","@types/xml2js":"^0.4.2","@typescript-eslint/eslint-plugin":"^3.7.0","@typescript-eslint/parser":"^3.7.0","@vscode/test-electron":"^2.1.3","@vscode/vsce":"^2.18.0","bent":"^7.3.12","chai":"^4.1.2","chai-arrays":"^2.0.0","chai-as-promised":"^7.1.1","copy-webpack-plugin":"^9.1.0","cross-spawn":"^6.0.5","del":"^6.0.0","download":"^8.0.0","es5-ext":"0.10.53","eslint":"^7.2.0","eslint-config-airbnb":"^18.2.0","eslint-config-prettier":"^8.3.0","eslint-plugin-import":"^2.25.4","eslint-plugin-jsx-a11y":"^6.3.1","eslint-plugin-react":"^7.20.3","eslint-plugin-react-hooks":"^4.0.0","expose-loader":"^3.1.0","flat":"^5.0.2","get-port":"^5.1.1","gulp":"^4.0.0","gulp-typescript":"^5.0.0","mocha":"^9.2.2","mocha-junit-reporter":"^2.0.2","mocha-multi-reporters":"^1.1.7","nock":"^10.0.6","node-has-native-dependencies":"^1.0.2","node-loader":"^1.0.2","node-polyfill-webpack-plugin":"^1.1.4","nyc":"^15.0.0","prettier":"^2.0.2","rewiremock":"^3.13.0","rimraf":"^3.0.2","shortid":"^2.2.8","sinon":"^13.0.1","source-map-support":"^0.5.12","ts-loader":"^9.2.8","ts-mockito":"^2.5.0","ts-node":"^10.7.0","tsconfig-paths-webpack-plugin":"^3.2.0","typemoq":"^2.1.0","typescript":"4.5.5","uuid":"^8.3.2","vscode-debugadapter-testsupport":"^1.27.0","webpack":"^5.76.0","webpack-bundle-analyzer":"^4.5.0","webpack-cli":"^4.9.2","webpack-fix-default-import-plugin":"^1.0.3","webpack-merge":"^5.8.0","webpack-node-externals":"^3.0.0","webpack-require-from":"^1.8.6","yargs":"^15.3.1"},"extensionPack":["ms-python.vscode-pylance"]},"location":{"$mid":1,"path":"/home/linuxbrew/app/code-server/extensions/ms-python.python-2023.16.0-universal","scheme":"file"},"isBuiltin":false,"targetPlatform":"universal","metadata":{"id":"f1f59ae4-9318-4f3c-a9b5-81b2eaa5f8a5","publisherId":"998b010b-e2af-44a5-a6cd-0b5fd3b9b6f8","publisherDisplayName":"ms-python","targetPlatform":"universal","updated":false,"isPreReleaseVersion":false,"installedTimestamp":1695869191474,"preRelease":false},"isValid":true,"validations":[]},{"type":1,"identifier":{"id":"ms-toolsai.jupyter-keymap","uuid":"9f6dc8db-620c-4844-b8c5-e74914f1be27"},"manifest":{"name":"jupyter-keymap","publisher":"ms-toolsai","author":{"name":"Microsoft Corporation"},"license":"MIT","icon":"icon.png","galleryBanner":{"color":"#ffffff","theme":"light"},"displayName":"Jupyter Keymap","description":"Jupyter keymaps for notebooks","version":"1.1.2","engines":{"vscode":"^1.79.0-insider"},"repository":{"type":"git","url":"https://github.com/Microsoft/vscode-jupyter-keymap"},"bugs":{"url":"https://github.com/Microsoft/vscode-jupyter-keymap/issues"},"categories":["Notebooks"],"keywords":["notebook-keymap"],"contributes":{"keybindings":[{"key":"F","when":"notebookEditorFocused && !inputFocus && !notebookOutputInputFocused","command":"notebook.find"},{"key":"K","when":"notebookEditorFocused && !inputFocus && !notebookOutputInputFocused","command":"list.focusUp"},{"key":"J","when":"notebookEditorFocused && !inputFocus && !notebookOutputInputFocused","command":"list.focusDown"},{"key":"A","when":"notebookEditorFocused && !inputFocus && !notebookOutputInputFocused","command":"notebook.cell.insertCodeCellAboveAndFocusContainer"},{"key":"B","when":"notebookEditorFocused && !inputFocus && !notebookOutputInputFocused","command":"notebook.cell.insertCodeCellBelowAndFocusContainer"},{"key":"D D","when":"notebookEditorFocused && !inputFocus && !notebookOutputInputFocused","command":"notebook.cell.delete"},{"key":"Z","when":"notebookEditorFocused && !inputFocus && !notebookOutputInputFocused","command":"undo"},{"key":"S","when":"notebookEditorFocused && !inputFocus && !notebookOutputInputFocused","command":"workbench.action.files.save"},{"key":"C","when":"notebookEditorFocused && !inputFocus && !notebookOutputInputFocused","command":"notebook.cell.copy"},{"key":"X","when":"notebookEditorFocused && !inputFocus && !notebookOutputInputFocused","command":"notebook.cell.cut"},{"key":"V","when":"notebookEditorFocused && !inputFocus && !notebookOutputInputFocused","command":"notebook.cell.paste"},{"key":"shift+L","when":"notebookEditorFocused && !inputFocus && !notebookOutputInputFocused","command":"notebook.toggleLineNumbers"},{"key":"O","when":"notebookEditorFocused && !inputFocus && !notebookOutputInputFocused","command":"notebook.cell.toggleOutputs"},{"key":"L","when":"notebookEditorFocused && !inputFocus && !notebookOutputInputFocused","command":"notebook.cell.toggleLineNumbers"},{"key":"ctrl+shift+-","when":"editorTextFocus && inputFocus && notebookEditorFocused && !notebookOutputInputFocused","command":"notebook.cell.split"},{"key":"ctrl+enter","when":"editorTextFocus && inputFocus && notebookEditorFocused || notebookCellListFocused","command":"notebook.cell.executeAndFocusContainer"},{"key":"shift+enter","when":"editorTextFocus && inputFocus && notebookEditorFocused && !interactiveEditorFocused || notebookCellListFocused && notebookCellType == 'code' && !interactiveEditorFocused","command":"notebook.cell.executeAndSelectBelow"},{"win":"ctrl+alt+enter","linux":"ctrl+alt+enter","when":"interactiveEditorHasProvider && interactiveEditorVisible && !interactiveEditorDocumentChanged || interactiveEditorHasProvider && interactiveEditorVisible && config.interactiveEditor.editMode != 'preview'","command":"interactive.acceptChanges"}]}},"location":{"$mid":1,"path":"/home/linuxbrew/app/code-server/extensions/ms-toolsai.jupyter-keymap-1.1.2-universal","scheme":"file"},"isBuiltin":false,"targetPlatform":"universal","metadata":{"id":"9f6dc8db-620c-4844-b8c5-e74914f1be27","publisherId":"ac8eb7c9-3e59-4b39-8040-f0484d8170ce","publisherDisplayName":"ms-toolsai","targetPlatform":"universal","updated":false,"isPreReleaseVersion":false,"installedTimestamp":1695869201385,"preRelease":false},"isValid":true,"validations":[]},{"type":1,"identifier":{"id":"ms-toolsai.vscode-jupyter-cell-tags","uuid":"ab4fb32a-befb-4102-adf9-1652d0cd6a5e"},"manifest":{"name":"vscode-jupyter-cell-tags","displayName":"Jupyter Cell Tags","description":"Jupyter Cell Tags support for VS Code","version":"0.1.8","publisher":"ms-toolsai","preview":true,"icon":"icon.png","galleryBanner":{"color":"#ffffff","theme":"light"},"author":{"name":"Microsoft Corporation"},"engines":{"vscode":"^1.72.0"},"categories":["Notebooks"],"activationEvents":["onNotebook:jupyter-notebook","onCommand:jupyter-cell-tags.removeTag","onCommand:jupyter-cell-tags.addTag","onCommand:jupyter-cell-tags.editTagsInJSON","onCommand:jupyter-cell-tags.paramaterize"],"repository":{"type":"git","url":"https://github.com/Microsoft/vscode-jupyter-cell-tags"},"main":"./out/extension-node.js","browser":"./out/extension-web.js","contributes":{"commands":[{"command":"jupyter-cell-tags.removeTag","title":"Remove Cell Tag","icon":"$(close)"},{"command":"jupyter-cell-tags.addTag","title":"Add Cell Tag","icon":"$(add)"},{"command":"jupyter-cell-tags.editTagsInJSON","title":"Edit Cell Tags (JSON)","icon":"$(go-to-file)"},{"command":"jupyter-cell-tags.paramaterize","title":"Mark Cell as Parameters"}],"menus":{"notebook/cell/title":[{"command":"jupyter-cell-tags.addTag","group":"jupytercelltags@1"},{"command":"jupyter-cell-tags.editTagsInJSON","group":"jupytercelltags@2"},{"command":"jupyter-cell-tags.paramaterize","group":"jupytercelltags@2"}],"view/title":[{"command":"jupyter-cell-tags.addTag","when":"view == cell-tag","group":"navigation"},{"command":"jupyter-cell-tags.editTagsInJSON","when":"view == cell-tag","group":"navigation"}],"view/item/context":[{"command":"jupyter-cell-tags.removeTag","when":"view == cell-tag","group":"inline"}]},"views":{"jupyter-variables":[{"id":"cell-tag","name":"Cell Tags","type":"tree","icon":"$(tag)","when":"jupyter:showTagsExplorer && jupyter.hasNativeNotebookOrInteractiveWindowOpen","visibility":"collapsed"}]},"viewsWelcome":[{"view":"cell-tag","contents":"No tags found for the selected cell. Use the [Add Cell Tag](command:jupyter-cell-tags.addTag) command to add tags."}]},"scripts":{"vscode:prepublish":"npm run compile","compile":"webpack --mode none","watch":"webpack --mode none --watch","pretest":"npm run compile && npm run lint","lint":"eslint src --ext ts","test":"node ./out/test/runTest.js"},"devDependencies":{"@types/vscode":"^1.72.0","@types/glob":"^7.1.3","@types/mocha":"^8.2.2","@types/node":"14.x","eslint":"^7.27.0","@typescript-eslint/eslint-plugin":"^4.26.0","@typescript-eslint/parser":"^4.26.0","glob":"^7.1.7","mocha":"^10.0.0","typescript":"^4.3.2","vscode-test":"^1.5.2","ts-loader":"^9.1.1","webpack":"^5.36.2","webpack-cli":"^4.6.0"}},"location":{"$mid":1,"path":"/home/linuxbrew/app/code-server/extensions/ms-toolsai.vscode-jupyter-cell-tags-0.1.8-universal","scheme":"file"},"isBuiltin":false,"targetPlatform":"universal","metadata":{"id":"ab4fb32a-befb-4102-adf9-1652d0cd6a5e","publisherId":"ac8eb7c9-3e59-4b39-8040-f0484d8170ce","publisherDisplayName":"ms-toolsai","targetPlatform":"universal","updated":false,"isPreReleaseVersion":false,"installedTimestamp":1695869201395,"preRelease":false},"isValid":true,"validations":[]},{"type":1,"identifier":{"id":"ms-toolsai.vscode-jupyter-slideshow","uuid":"e153ca70-b543-4865-b4c5-b31d34185948"},"manifest":{"name":"vscode-jupyter-slideshow","displayName":"Jupyter Slide Show","description":"Jupyter Slide Show support for VS Code","version":"0.1.5","publisher":"ms-toolsai","preview":true,"icon":"icon.png","galleryBanner":{"color":"#ffffff","theme":"light"},"author":{"name":"Microsoft Corporation"},"engines":{"vscode":"^1.71.0"},"categories":["Notebooks"],"activationEvents":["onNotebook:jupyter-notebook","onCommand:jupyter-slideshow.switchSlideType","onCommand:jupyter-slideshow.editSlideShowInJSON"],"repository":{"type":"git","url":"https://github.com/Microsoft/vscode-jupyter-slideshow"},"main":"./out/extension-node.js","browser":"./out/extension-web.js","contributes":{"commands":[{"command":"jupyter-slideshow.switchSlideType","title":"Switch Slide Type"},{"command":"jupyter-slideshow.editSlideShowInJSON","title":"Edit Slide Type (JSON)","icon":"$(go-to-file)"}],"menus":{"notebook/cell/title":[{"command":"jupyter-slideshow.switchSlideType","group":"jupyter-slideshow@1"},{"command":"jupyter-slideshow.editSlideShowInJSON","group":"jupyter-slideshow@2"}]}},"scripts":{"vscode:prepublish":"npm run compile","compile":"webpack --mode none","watch":"webpack --mode none --watch","pretest":"npm run compile && npm run lint","lint":"eslint src --ext ts","test":"node ./out/test/runTest.js"},"devDependencies":{"@types/vscode":"^1.71.0","@types/glob":"^7.1.3","@types/mocha":"^8.2.2","@types/node":"14.x","eslint":"^7.27.0","@typescript-eslint/eslint-plugin":"^4.26.0","@typescript-eslint/parser":"^4.26.0","glob":"^7.1.7","mocha":"^10.0.0","typescript":"^4.3.2","vscode-test":"^1.5.2","ts-loader":"^9.1.1","webpack":"^5.36.2","webpack-cli":"^4.6.0"}},"location":{"$mid":1,"path":"/home/linuxbrew/app/code-server/extensions/ms-toolsai.vscode-jupyter-slideshow-0.1.5-universal","scheme":"file"},"isBuiltin":false,"targetPlatform":"universal","metadata":{"id":"e153ca70-b543-4865-b4c5-b31d34185948","publisherId":"ac8eb7c9-3e59-4b39-8040-f0484d8170ce","publisherDisplayName":"ms-toolsai","targetPlatform":"universal","updated":false,"isPreReleaseVersion":false,"installedTimestamp":1695869201403,"preRelease":false},"isValid":true,"validations":[]},{"type":1,"identifier":{"id":"ms-toolsai.jupyter-renderers","uuid":"b15c72f8-d5fe-421a-a4f7-27ed9f6addbf"},"manifest":{"name":"jupyter-renderers","displayName":"Jupyter Notebook Renderers","description":"Renderers for Jupyter Notebooks (with plotly, vega, gif, png, svg, jpeg and other such outputs)","version":"1.0.17","engines":{"vscode":"^1.80.0"},"publisher":"ms-toolsai","author":{"name":"Microsoft Corporation"},"license":"MIT","homepage":"https://github.com/Microsoft/vscode-notebook-renderers","repository":{"type":"git","url":"https://github.com/Microsoft/vscode-notebook-renderers"},"bugs":{"url":"https://github.com/Microsoft/vscode-notebook-renderers/issues"},"qna":"https://stackoverflow.com/questions/tagged/visual-studio-code+jupyter","icon":"icon.png","galleryBanner":{"color":"#ffffff","theme":"light"},"keywords":["jupyter","notebook","notebookRenderer","multi-root ready"],"categories":["Other","Data Science","Machine Learning","Notebooks","Visualization"],"activationEvents":["onNotebook:*"],"enabledApiProposals":["contribNotebookStaticPreloads"],"main":"./out/extension_renderer/index.js","browser":"./out/extension_renderer/index.js","contributes":{"notebookPreload":[{"type":"jupyter-notebook","entrypoint":"./out/node_modules/@vscode/jupyter-ipywidgets7/dist/ipywidgets.js"},{"type":"interactive","entrypoint":"./out/node_modules/@vscode/jupyter-ipywidgets7/dist/ipywidgets.js"},{"type":"jupyter-notebook","entrypoint":"./out/node_modules/@vscode/jupyter-ipywidgets8/dist/ipywidgets.js"},{"type":"interactive","entrypoint":"./out/node_modules/@vscode/jupyter-ipywidgets8/dist/ipywidgets.js"},{"type":"jupyter-notebook","entrypoint":"./out/client_renderer/preload.js"},{"type":"interactive","entrypoint":"./out/client_renderer/preload.js"}],"notebookRenderer":[{"id":"jupyter-notebook-renderer","entrypoint":"./out/client_renderer/renderers.js","displayName":"Jupyter Notebook Renderer","requiresMessaging":"optional","mimeTypes":["image/gif","image/png","image/jpeg","image/svg+xml","application/geo+json","application/vdom.v1+json","application/vnd.dataresource+json","application/vnd.plotly.v1+json","application/vnd.vega.v2+json","application/vnd.vega.v3+json","application/vnd.vega.v4+json","application/vnd.vegalite.v1+json","application/vnd.vegalite.v2+json","application/x-nteract-model-debug+json","text/vnd.plotly.v1+html"]},{"id":"jupyter-notebook-built-in-renderer-hooks","displayName":"Jupyter Notebook Html/JavaScript Renderer","requiresMessaging":"optional","entrypoint":{"extends":"vscode.builtin-renderer","path":"./out/client_renderer/builtinRendererHooks.js"}},{"id":"jupyter-vega-renderer","displayName":"Jupyter Vega Renderer","requiresMessaging":"optional","entrypoint":"./out/client_renderer/vegaRenderer.js","mimeTypes":["application/vnd.vega.v5+json","application/vnd.vegalite.v3+json","application/vnd.vegalite.v4+json","application/vnd.vegalite.v5+json"]},{"id":"jupyter-markdown","displayName":"Jupyter Markdown styles","entrypoint":{"extends":"vscode.markdown-it-renderer","path":"./out/client_renderer/markdown.js"}}]},"scripts":{"vscode:prepublish":"npm run compile:webpack","dev":"concurrently -r npm:compile:extension:watch npm:compile:client:watch npm:compile:test:watch","compile":"npm run compile:extension && npm run compile:test && npm run compile:client","compile:extension":"tsc -p src/extension","compile:extension:watch":"tsc -p src/extension --watch","compile:test":"tsc -p src/test","compile:test:watch":"tsc -p src/test --watch","compile:webpack":"npm run build:client && npm run build:extension","compile:client":"webpack --config=build/webpack/webpack.client.config.js","build:client":"webpack --config=build/webpack/webpack.client.config.js --mode=production","build:extension":"webpack --config=build/webpack/webpack.extension.config.js --mode=production","compile:client:watch":"webpack --config=build/webpack/webpack.client.config.js --watch","lint":"eslint src --ext ts && eslint src --ext tsx && eslint build --ext js","lint-format":"npx prettier 'src/**/*.ts*' --check && npx prettier 'build/**/*.js' --check","watch":"tsc -watch -p ./","f":"vsce package -o ms-notebook-renderers.vsix","test":"node ./out/test/runTest.js","prettier-fix":"prettier 'src/**/*.ts*' --write && prettier 'build/**/*.js' --write","postinstall":"node ./build/postInstall.js"},"dependencies":{"@babel/helper-validator-identifier":"^7.10.1","@blueprintjs/core":"^3.7.0","@blueprintjs/select":"^3.2.0","@jupyter-widgets/base":"^4.1.0","@jupyter-widgets/controls":"^3.1.0","@jupyter-widgets/jupyterlab-manager":"^3.1.0","@jupyter-widgets/output":"^4.1.0","@jupyterlab/coreutils":"^5.4.2","@jupyterlab/nbformat":"^3.4.2","@loadable/component":"^5.12.0","@nteract/transform-dataresource":"^3.0.2","@nteract/transform-geojson":"^3.2.3","@nteract/transform-model-debug":"^3.2.3","@nteract/transform-plotly":"^7.0.0","@nteract/transform-vega":"7.0.10","@nteract/transforms":"^3.2.0","@phosphor/widgets":"^1.9.3","@vscode/jupyter-ipywidgets7":"^2.0.1","@vscode/jupyter-ipywidgets8":"^1.0.2","chownr":"^2.0.0","fs-minipass":"^2.1.0","jquery":"^3.6.1","lodash":"^4.17.21","minipass":"^3.1.6","minizlib":"^2.1.2","path-browserify":"^0.0.1","plotly.js-dist":"^2.20.0","re-resizable":"~6.5.5","react":"^16.8.4","react-dom":"^16.8.4","react-toggle":"^4.1.2","requirejs":"^2.3.6","styled-components":"5.2.1","tslib":"^1.14.1","underscore":"^1.13.1","util":"^0.12.3","uuid":"^3.3.2","vega":"^5.24.0","vega-embed":"^6.21.3","vega-lite":"^5.6.1","yallist":"^4.0.0"},"devDependencies":{"@types/copy-webpack-plugin":"^10.1.0","@types/glob":"^7.1.1","@types/loadable__component":"^5.10.0","@types/lodash":"^4.14.158","@types/markdown-it":"^12.2.3","@types/mocha":"^7.0.2","@types/node":"^12.11.7","@types/react":"^16.9.35","@types/react-dom":"^16.9.8","@types/uuid":"^8.0.0","@types/vscode":"^1.60.0","@types/vscode-notebook-renderer":"^1.60.0","@typescript-eslint/eslint-plugin":"^3.1.0","@typescript-eslint/parser":"^3.1.0","concurrently":"^5.2.0","copy-webpack-plugin":"^6.4.1","css-loader":"^3.5.3","eslint":"^7.1.0","eslint-config-prettier":"^6.11.0","eslint-plugin-prettier":"^3.1.3","fork-ts-checker-webpack-plugin":"^4.1.6","glob":"^7.1.6","install":"^0.13.0","less":"^3.11.3","mocha":"^10.1.0","node-loader":"^2.0.0","prettier":"^2.0.5","style-loader":"^1.2.1","svg-inline-loader":"^0.8.2","thread-loader":"^3.0.4","ts-loader":"^9.3.1","typescript":"^4.7.4","url-loader":"^4.1.0","vscode-test":"^1.4.0","webpack":"^5.76.3","webpack-bundle-analyzer":"^4.8.0","webpack-cli":"^5.0.1","webpack-fix-default-import-plugin":"^1.0.3"},"optionalDependencies":{"canvas":"^2.7.0"},"overrides":{"ini":"1.3.6","simple-get":"3.1.1","node-fetch":"2.6.7","prismjs":"1.27.0","jquery-ui@<1.13.2":"1.13.2","url-parse@<1.5.9":"1.5.9","terser@<5.14.2":"5.14.2","ua-parser-js":"0.7.24","moment@<2.29.4":"2.29.4","sanitize-html":"2.7.3"}},"location":{"$mid":1,"path":"/home/linuxbrew/app/code-server/extensions/ms-toolsai.jupyter-renderers-1.0.17-universal","scheme":"file"},"isBuiltin":false,"targetPlatform":"universal","metadata":{"id":"b15c72f8-d5fe-421a-a4f7-27ed9f6addbf","publisherId":"ac8eb7c9-3e59-4b39-8040-f0484d8170ce","publisherDisplayName":"ms-toolsai","targetPlatform":"universal","updated":false,"isPreReleaseVersion":false,"installedTimestamp":1695869201372,"preRelease":false},"isValid":true,"validations":[]},{"type":1,"identifier":{"id":"ms-toolsai.jupyter","uuid":"6c2f1801-1e7f-45b2-9b5c-7782f1e076e8"},"manifest":{"name":"jupyter","displayName":"Jupyter","version":"2023.7.100","description":"Jupyter notebook support, interactive programming and computing that supports Intellisense, debugging and more.","publisher":"ms-toolsai","author":{"name":"Microsoft Corporation"},"extensionPack":["ms-toolsai.jupyter-keymap","ms-toolsai.jupyter-renderers","ms-toolsai.vscode-jupyter-slideshow","ms-toolsai.vscode-jupyter-cell-tags"],"license":"MIT","homepage":"https://github.com/Microsoft/vscode-jupyter","repository":{"type":"git","url":"https://github.com/Microsoft/vscode-jupyter"},"bugs":{"url":"https://github.com/Microsoft/vscode-jupyter/issues"},"qna":"https://github.com/microsoft/vscode-jupyter/discussions","icon":"icon.png","galleryBanner":{"color":"#ffffff","theme":"light"},"engines":{"vscode":"^1.81.0"},"l10n":"./l10n","keywords":["jupyter","notebook","notebookKernelJupyterNotebook","multi-root ready","python","interactive"],"categories":["Extension Packs","Data Science","Machine Learning","Notebooks","Visualization"],"activationEvents":["onLanguage:python","onLanguage:jupyter","onNotebook:jupyter-notebook","onNotebook:interactive","onWebviewPanel:jupyter-variables","onWebviewPanel:jupyter"],"main":"./out/extension.node.js","browser":"./out/extension.web.bundle.js","capabilities":{"virtualWorkspaces":true,"untrustedWorkspaces":{"supported":"limited","description":"Execution of cells in Interactive Window and Notebooks is not supported in untrusted workspaces."}},"contributes":{"walkthroughs":[{"id":"jupyterWelcome","title":"Get Started with Jupyter Notebooks","description":"Your first steps to set up a Jupyter project with all the powerful tools and features that the Jupyter Extension has to offer!","when":"workspacePlatform != webworker","steps":[{"id":"ipynb.newUntitledIpynb","title":"Create or open a Jupyter Notebook","description":"Right click in the file explorer and create a new file with an .ipynb extension. Or, open the [Command Palette](command:workbench.action.showCommands) and run the command \n``Create: New Jupyter Notebook``.\n[Create New Jupyter Notebook](command:toSide:ipynb.newUntitledIpynb)\n If you have an existing project, you can also [open a folder](command:toSide:workbench.action.files.openFolder) and/or clone a project from GitHub: [clone a Git repository](command:toSide:git.clone).","media":{"svg":"resources/walkthroughs/opennotebook.svg","altText":"Creating a new Jupyter notebook"},"completionEvents":["onCommand:ipynb.newUntitledIpynb","onCommand:jupyter.createnewinteractive","onCommand:workbench.action.files.openFolder","onCommand:workbench.action.files.openFileFolder"]},{"id":"jupyter.selectKernel","title":"Select a Jupyter kernel","description":"Click Select Kernel at the top right of the notebook and choose the environment in which to run your kernel. Or, with a notebook opened and in focus, open the [Command Palette](command:workbench.action.showCommands) and run the command: \n``Notebook: Select Notebook Kernel``. \n[Open Command Palette to Select a Jupyter Kernel](command:workbench.action.showCommands)","media":{"svg":"resources/walkthroughs/kernel.svg","altText":"Selecting or changing a notebook kernel"},"completionEvents":["onCommand:notebook.selectKernel"]},{"id":"jupyter.exploreAndDebug","title":"Explore data and debug","description":"📅 You can use the [Data Viewer](https://code.visualstudio.com/docs/datascience/data-science-tutorial#_prepare-the-data) to view, sort, and filter the rows of data. After loading your data, click \"Variables\" at the top right of notebook and click the Data Viewer icon to the left of the data table. \n \n[Learn about Data Viewer](https://code.visualstudio.com/docs/datascience/data-science-tutorial#_prepare-the-data)\n \n📒 Debug your notebook using the [Run by Line](https://code.visualstudio.com/docs/datascience/jupyter-notebooks#_run-by-line) mode to execute a cell one line at a time. Click the Run by Line icon from your cell (play button with lines) or hit F10. \n \n[Learn about Run by Line](https://code.visualstudio.com/docs/datascience/jupyter-notebooks#_run-by-line)","media":{"svg":"resources/walkthroughs/data.svg","altText":"Opening data viewer"}},{"id":"jupyter.dataScienceLearnMore","title":"Find out more!","description":"🎨 Explore all the features the Jupyter Extension has to offer by looking for \"Jupyter\" in the [Command Palette](command:workbench.action.showCommands). \n 📈 Learn more about getting started with data science in [Python](command:workbench.action.openWalkthrough?%7B%22category%22%3A%22ms-python.python%23pythonDataScienceWelcome%22%2C%22step%22%3A%22ms-python.python%23python.createNewNotebook%22%7D) by installing the Python Extension ([search Python extension](command:workbench.extensions.search?\"ms-python.python\")). \n 📃 Find out more features in our [Tutorials](https://code.visualstudio.com/docs/datascience/jupyter-notebooks). \n[Learn more](https://aka.ms/AAdar6q)","media":{"svg":"resources/walkthroughs/learnmore.svg","altText":"Image representing our documentation page and mailing list resources."}}]}],"keybindings":[{"command":"jupyter.execSelectionInteractive","key":"shift+enter","when":"editorTextFocus && editorLangId == python && !findInputFocussed && !replaceInputFocussed && jupyter.ownsSelection && !notebookEditorFocused"},{"command":"jupyter.runcurrentcelladvance","key":"shift+enter","when":"editorTextFocus && !editorHasSelection && jupyter.hascodecells && !notebookEditorFocused"},{"command":"jupyter.runcurrentcell","key":"ctrl+enter","when":"editorTextFocus && !editorHasSelection && jupyter.hascodecells && !notebookEditorFocused && !jupyter.havenativecells"},{"command":"jupyter.runcurrentcellandaddbelow","key":"alt+enter","when":"editorTextFocus && !editorHasSelection && jupyter.hascodecells && !notebookEditorFocused"},{"key":"shift+enter","when":"activeEditor == 'workbench.editor.interactive' && notebookKernel =~ /^ms-toolsai.jupyter\\// || activeEditor == 'workbench.editor.interactive' && !notebookKernel","command":"interactive.execute"},{"key":"escape","when":"activeEditor == 'workbench.editor.interactive' && !editorHoverVisible && !suggestWidgetVisible && !isComposing && !inSnippetMode && !exceptionWidgetVisible && !selectionAnchorSet && !LinkedEditingInputVisible && !renameInputVisible && !editorHasSelection && !accessibilityHelpWidgetVisible && !breakpointWidgetVisible && !findWidgetVisible && !markersNavigationVisible && !parameterHintsVisible && !editorHasMultipleSelections && !notificationToastsVisible","command":"interactive.input.clear"},{"command":"jupyter.insertCellBelowPosition","key":"ctrl+; s","when":"editorTextFocus && jupyter.hascodecells && !notebookEditorFocused"},{"command":"jupyter.insertCellBelow","key":"ctrl+; b","when":"editorTextFocus && jupyter.hascodecells && !notebookEditorFocused"},{"command":"jupyter.insertCellAbove","key":"ctrl+; a","when":"editorTextFocus && jupyter.hascodecells && !notebookEditorFocused"},{"command":"jupyter.deleteCells","key":"ctrl+; x","when":"editorTextFocus && jupyter.hascodecells && !notebookEditorFocused"},{"command":"jupyter.extendSelectionByCellAbove","key":"ctrl+alt+shift+[","when":"editorTextFocus && jupyter.hascodecells && !notebookEditorFocused"},{"command":"jupyter.extendSelectionByCellBelow","key":"ctrl+alt+shift+]","when":"editorTextFocus && jupyter.hascodecells && !notebookEditorFocused"},{"command":"jupyter.moveCellsUp","key":"ctrl+; u","when":"editorTextFocus && jupyter.hascodecells && !notebookEditorFocused"},{"command":"jupyter.moveCellsDown","key":"ctrl+; d","when":"editorTextFocus && jupyter.hascodecells && !notebookEditorFocused"},{"command":"jupyter.changeCellToMarkdown","key":"ctrl+; m","when":"editorTextFocus && jupyter.hascodecells && !notebookEditorFocused"},{"command":"jupyter.changeCellToCode","key":"ctrl+; c","when":"editorTextFocus && jupyter.hascodecells && !notebookEditorFocused"},{"command":"jupyter.gotoNextCellInFile","key":"ctrl+alt+]","when":"editorTextFocus && jupyter.hascodecells && !notebookEditorFocused"},{"command":"jupyter.gotoPrevCellInFile","key":"ctrl+alt+[","when":"editorTextFocus && jupyter.hascodecells && !notebookEditorFocused"},{"command":"jupyter.selectCellContents","key":"ctrl+alt+\\","when":"editorTextFocus && jupyter.hascodecells && !notebookEditorFocused"},{"command":"jupyter.selectCell","key":"ctrl+alt+shift+\\","when":"editorTextFocus && jupyter.hascodecells && !notebookEditorFocused"},{"command":"jupyter.refreshDataViewer","key":"ctrl+r","mac":"cmd+r","when":"jupyter.dataViewerActive"},{"command":"jupyter.runAndDebugCell","key":"ctrl+alt+shift+enter","mac":"ctrl+shift+enter"},{"command":"jupyter.runByLine","key":"f10"},{"command":"jupyter.runByLineNext","key":"f10"},{"command":"jupyter.runByLineStop","key":"ctrl+enter"}],"commands":[{"command":"dataScience.ClearCache","title":"Clear Cache","category":"Jupyter (Dev)","enablement":"jupyter.development"},{"command":"dataScience.ClearUserProviderJupyterServerCache","title":"Clear User Jupyter Server Cache","category":"Jupyter (Dev)","enablement":"jupyter.development"},{"command":"jupyter.replayPylanceLog","title":"Replay Pylance Log","category":"Jupyter (Dev)","enablement":"jupyter.development && notebookType == jupyter-notebook && isWorkspaceTrusted && !jupyter.webExtension"},{"command":"jupyter.replayPylanceLogStep","title":"Step Pylance Log","category":"Jupyter (Dev)","icon":"$(debug-start)","enablement":"jupyter.development && notebookType == jupyter-notebook && isWorkspaceTrusted && jupyter.replayLogLoaded && !jupyter.webExtension"},{"command":"jupyter.filterKernels","title":"Filter Kernels","category":"Jupyter","enablement":"!jupyter.webExtension && config.notebook.kernelPicker.type != mru"},{"command":"jupyter.runByLine","title":"Run by Line","icon":"$(debug-line-by-line)","category":"Jupyter","enablement":"notebookKernel =~ /^ms-toolsai.jupyter\\// && jupyter.ispythonnotebook && notebookCellType == code && isWorkspaceTrusted && resource not in jupyter.notebookeditor.debugDocuments || !notebookKernel && jupyter.ispythonnotebook && notebookCellType == code && isWorkspaceTrusted"},{"command":"jupyter.runAndDebugCell","title":"Debug Cell","icon":"$(debug-alt-small)","category":"Jupyter","enablement":"notebookKernel =~ /^ms-toolsai.jupyter\\// && jupyter.ispythonnotebook && notebookCellType == code && isWorkspaceTrusted && resource not in jupyter.notebookeditor.debugDocuments || !notebookKernel && jupyter.ispythonnotebook && notebookCellType == code && isWorkspaceTrusted"},{"command":"jupyter.runByLineNext","title":"Run Next Line","icon":"$(debug-line-by-line)","category":"Jupyter","enablement":"notebookCellResource in jupyter.notebookeditor.runByLineCells"},{"command":"jupyter.runByLineStop","title":"Continue Execution","icon":"$(debug-continue-small)","category":"Jupyter","enablement":"notebookCellResource in jupyter.notebookeditor.runByLineCells"},{"command":"jupyter.viewOutput","title":"Show Output","category":"Jupyter"},{"command":"jupyter.notebookeditor.export","title":"Export As","shortTitle":"Export","category":"Notebook","icon":{"light":"resources/light/export_to_python.svg","dark":"resources/dark/export_to_python.svg"},"enablement":"notebookType == jupyter-notebook && isWorkspaceTrusted && !jupyter.webExtension || notebookType == jupyter-notebook && isWorkspaceTrusted && jupyter.webExtension && notebookKernel =~ /^ms-toolsai.jupyter\\//"},{"command":"jupyter.export","title":"Export As","category":"Jupyter","enablement":"isWorkspaceTrusted && !jupyter.webExtension || isWorkspaceTrusted && jupyter.webExtension && notebookKernel =~ /^ms-toolsai.jupyter\\//"},{"command":"jupyter.exportAsPythonScript","title":"Export to Python Script","category":"Jupyter","enablement":"isWorkspaceTrusted && !jupyter.webExtension || isWorkspaceTrusted && jupyter.webExtension && notebookKernel =~ /^ms-toolsai.jupyter\\//"},{"command":"jupyter.exportToHTML","title":"Export to HTML","category":"Jupyter","enablement":"isWorkspaceTrusted && !jupyter.webExtension || isWorkspaceTrusted && jupyter.webExtension && notebookKernel =~ /^ms-toolsai.jupyter\\//"},{"command":"jupyter.exportToPDF","title":"Export to PDF","category":"Jupyter","enablement":"isWorkspaceTrusted && !jupyter.webExtension || isWorkspaceTrusted && jupyter.webExtension && notebookKernel =~ /^ms-toolsai.jupyter\\//"},{"command":"jupyter.selectJupyterInterpreter","title":"Select Interpreter to Start Jupyter Server","category":"Jupyter","enablement":"isWorkspaceTrusted && !jupyter.webExtension"},{"command":"jupyter.runcurrentcell","title":"Run Current Cell","category":"Jupyter","enablement":"isWorkspaceTrusted"},{"command":"jupyter.debugcell","title":"Debug Cell","category":"Jupyter","enablement":"isWorkspaceTrusted"},{"command":"jupyter.debugstepover","title":"Step Over","category":"Jupyter","enablement":"isWorkspaceTrusted"},{"command":"jupyter.debugstop","title":"Stop","category":"Jupyter","enablement":"isWorkspaceTrusted"},{"command":"jupyter.debugcontinue","title":"Continue","category":"Jupyter","enablement":"isWorkspaceTrusted"},{"command":"jupyter.insertCellBelowPosition","title":"Insert Cell Below Position","category":"Jupyter","enablement":"isWorkspaceTrusted && !jupyter.webExtension"},{"command":"jupyter.insertCellBelow","title":"Insert Cell Below","category":"Jupyter","enablement":"!jupyter.webExtension"},{"command":"jupyter.insertCellAbove","title":"Insert Cell Above","category":"Jupyter","enablement":"!jupyter.webExtension"},{"command":"jupyter.deleteCells","title":"Delete Selected Cells","category":"Jupyter","enablement":"!jupyter.webExtension"},{"command":"jupyter.selectCell","title":"Select Cell","category":"Jupyter","enablement":"!jupyter.webExtension"},{"command":"jupyter.selectCellContents","title":"Select Cell Contents","category":"Jupyter","enablement":"!jupyter.webExtension"},{"command":"jupyter.extendSelectionByCellAbove","title":"Extend Selection By Cell Above","category":"Jupyter","enablement":"!jupyter.webExtension"},{"command":"jupyter.extendSelectionByCellBelow","title":"Extend Selection By Cell Below","category":"Jupyter","enablement":"!jupyter.webExtension"},{"command":"jupyter.moveCellsUp","title":"Move Selected Cells Up","category":"Jupyter","enablement":"!jupyter.webExtension"},{"command":"jupyter.moveCellsDown","title":"Move Selected Cells Down","category":"Jupyter","enablement":"!jupyter.webExtension"},{"command":"jupyter.changeCellToMarkdown","title":"Change Cell to Markdown","category":"Jupyter","enablement":"!jupyter.webExtension"},{"command":"jupyter.changeCellToCode","title":"Change Cell to Code","category":"Jupyter","enablement":"!jupyter.webExtension"},{"command":"jupyter.gotoNextCellInFile","title":"Go to Next Cell","category":"Jupyter","enablement":"!jupyter.webExtension"},{"command":"jupyter.gotoPrevCellInFile","title":"Go to Previous Cell","category":"Jupyter","enablement":"!jupyter.webExtension"},{"command":"jupyter.runcurrentcelladvance","title":"Run Current Cell And Advance","category":"Jupyter","enablement":"isWorkspaceTrusted"},{"command":"jupyter.runcurrentcellandallbelow.palette","title":"Run Current Cell and Below","category":"Jupyter","enablement":"isWorkspaceTrusted"},{"command":"jupyter.runallcellsabove.palette","title":"Run Cells Above Current Cell","category":"Jupyter","enablement":"isWorkspaceTrusted"},{"command":"jupyter.debugcurrentcell.palette","title":"Debug Current Cell","category":"Jupyter","enablement":"isWorkspaceTrusted && !jupyter.webExtension"},{"command":"jupyter.execSelectionInteractive","title":"Run Selection/Line in Interactive Window","category":"Jupyter","enablement":"isWorkspaceTrusted && !jupyter.webExtension"},{"command":"jupyter.createnewinteractive","title":"Create Interactive Window","category":"Jupyter","enablement":"isWorkspaceTrusted"},{"command":"jupyter.runFileInteractive","title":"Run Current File in Interactive Window","icon":"$(play)","category":"Jupyter","enablement":"isWorkspaceTrusted"},{"command":"jupyter.debugFileInteractive","title":"Debug Current File in Interactive Window","category":"Jupyter","enablement":"isWorkspaceTrusted && !jupyter.webExtension"},{"command":"jupyter.runallcells","title":"Run All Cells","category":"Jupyter","enablement":"isWorkspaceTrusted"},{"command":"jupyter.runallcellsabove","title":"Run Above","category":"Jupyter","enablement":"isWorkspaceTrusted"},{"command":"jupyter.runcellandallbelow","title":"Run Below","category":"Jupyter","enablement":"isWorkspaceTrusted"},{"command":"jupyter.runcell","title":"Run Cell","category":"Jupyter","enablement":"isWorkspaceTrusted"},{"command":"jupyter.runtoline","title":"Run To Line in Interactive Window","category":"Jupyter","enablement":"isWorkspaceTrusted && !jupyter.webExtension"},{"command":"jupyter.runfromline","title":"Run From Line in Interactive Window","category":"Jupyter","enablement":"isWorkspaceTrusted && !jupyter.webExtension"},{"command":"jupyter.importnotebook","title":"Import Jupyter Notebook","category":"Jupyter","enablement":"isWorkspaceTrusted && !jupyter.webExtension"},{"command":"jupyter.importnotebookfile","title":"Import Notebook to Script","category":"Jupyter","enablement":"isWorkspaceTrusted && !jupyter.webExtension"},{"command":"jupyter.exportoutputasnotebook","title":"Export Interactive Window as Jupyter Notebook","category":"Jupyter","enablement":"isWorkspaceTrusted && !jupyter.webExtension"},{"command":"jupyter.exportfileasnotebook","title":"Export Current Python File as Jupyter Notebook","category":"Jupyter","enablement":"isWorkspaceTrusted && !jupyter.webExtension"},{"command":"jupyter.exportfileandoutputasnotebook","title":"Export Current Python File and Output as Jupyter Notebook","category":"Jupyter","enablement":"isWorkspaceTrusted && !jupyter.webExtension"},{"command":"jupyter.notebookeditor.undocells","title":"Undo Last Interactive Action","category":"Notebook","enablement":"!jupyter.webExtension"},{"command":"jupyter.notebookeditor.redocells","title":"Redo Last Interactive Action","category":"Notebook","enablement":"!jupyter.webExtension"},{"command":"jupyter.interruptkernel","title":"Interrupt Kernel","shortTitle":"Interrupt","category":"Jupyter","icon":{"light":"resources/light/interrupt.svg","dark":"resources/dark/interrupt.svg"},"enablement":"isWorkspaceTrusted && jupyter.interactive.canInterruptNotebookKernel"},{"command":"jupyter.restartkernel","title":"Restart Kernel","shortTitle":"Restart","category":"Jupyter","icon":{"light":"resources/light/restart-kernel.svg","dark":"resources/dark/restart-kernel.svg"},"enablement":"isWorkspaceTrusted && (jupyter.interactive.canRestartNotebookKernel || (notebookKernel =~ /^ms-toolsai.jupyter\\// && jupyter.notebookeditor.canrestartNotebookkernel))"},{"command":"jupyter.restartkernelandrunallcells","title":"Restart Kernel and Run All Cells","shortTitle":"Restart and Run All","category":"Jupyter","enablement":"isWorkspaceTrusted && (jupyter.interactive.canRestartNotebookKernel || (notebookKernel =~ /^ms-toolsai.jupyter\\// && jupyter.notebookeditor.canrestartNotebookkernel))"},{"command":"jupyter.restartkernelandrunuptoselectedcell","title":"Restart Kernel and Run Up To Selected Cell","shortTitle":"Restart Kernel and Run Up To Selected Cell","category":"Jupyter","enablement":"isWorkspaceTrusted && (notebookKernel =~ /^ms-toolsai.jupyter\\// && jupyter.notebookeditor.canrestartNotebookkernel)"},{"command":"jupyter.notebookeditor.addcellbelow","title":"Add Empty Cell to Notebook File","category":"Notebook","enablement":"!jupyter.webExtension"},{"command":"jupyter.notebookeditor.removeallcells","title":"Delete All Notebook Editor Cells","category":"Notebook","enablement":"!jupyter.webExtension"},{"command":"jupyter.notebookeditor.expandallcells","title":"Expand All Notebook Cells","category":"Notebook","enablement":"!jupyter.webExtension"},{"command":"jupyter.notebookeditor.collapseallcells","title":"Collapse All Notebook Cells","category":"Notebook","enablement":"!jupyter.webExtension"},{"command":"jupyter.expandallcells","title":"Expand All Interactive Cells","shortTitle":"Expand","category":"Jupyter","icon":"$(expand-all)"},{"command":"jupyter.collapseallcells","title":"Collapse All Interactive Cells","shortTitle":"Collapse","category":"Jupyter","icon":"$(collapse-all)"},{"command":"jupyter.addcellbelow","title":"Add Empty Cell to File","category":"Jupyter","enablement":"!jupyter.webExtension"},{"command":"jupyter.createnewnotebook","title":"Create New Jupyter Notebook","category":"Jupyter","enablement":"!jupyter.webExtension"},{"command":"jupyter.scrolltocell","title":"Scroll Cell Into View","category":"Jupyter","enablement":"!jupyter.webExtension"},{"command":"jupyter.latestExtension","title":"DataScience.latestExtension","category":"Jupyter","enablement":"!jupyter.webExtension"},{"command":"jupyter.enableDebugLogging","title":"Enable Debug Logging","category":"Jupyter","enablement":"!jupyter.webExtension"},{"command":"jupyter.resetLoggingLevel","title":"Reset Logging Level","enablement":"!jupyter.webExtension","category":"Jupyter"},{"command":"jupyter.showDataViewer","title":"View Value in Data Viewer","enablement":"!jupyter.webExtension","category":"Jupyter"},{"command":"jupyter.clearSavedJupyterUris","title":"Clear Jupyter Remote Server List","category":"Jupyter"},{"command":"jupyter.openVariableView","title":"Open Variables View","shortTitle":"Variables","icon":"$(variable-group)","category":"Jupyter","enablement":"notebookType == jupyter-notebook && isWorkspaceTrusted || notebookType == interactive && isWorkspaceTrusted"},{"command":"jupyter.openOutlineView","title":"Show Table Of Contents (Outline View)","shortTitle":"Outline","icon":"$(list-unordered)","category":"Jupyter","enablement":"notebookType == jupyter-notebook"},{"command":"jupyter.refreshDataViewer","title":"Refresh Data Viewer","category":"Jupyter","enablement":"jupyter.dataViewerActive && isWorkspaceTrusted"},{"command":"jupyter.interactive.clearAllCells","title":"Clear All","icon":"$(close)","category":"Jupyter"},{"command":"jupyter.interactive.goToCode","title":"Go to code","icon":"$(go-to-file)","category":"Jupyter"},{"command":"jupyter.interactive.exportasnotebook","title":"Export to Jupyter Notebook","shortTitle":"Save","icon":"$(save-as)","enablement":"notebookType == interactive","category":"Jupyter"},{"command":"jupyter.interactive.exportas","title":"Export","icon":{"light":"resources/light/export_to_python.svg","dark":"resources/dark/export_to_python.svg"},"enablement":"notebookType == interactive","category":"Jupyter"},{"command":"jupyter.interactive.copyCell","title":"Copy Cell","icon":"$(copy)","category":"Jupyter"},{"command":"jupyter.runInDedicatedExtensionHost","title":"Run in Dedicated Extension Host","enablement":"!jupyter.webExtension","category":"Jupyter"},{"command":"jupyter.continueEditSessionInCodespace","title":"Continue On Codespace","shortTitle":"Continue On","icon":"$(vm)","enablement":"true","category":"Jupyter"}],"submenus":[{"id":"editor.interactiveWindow.context","label":"Run in Interactive Window"}],"menus":{"editor/context":[{"submenu":"editor.interactiveWindow.context","group":"Jupyter2"},{"when":"editorFocus && editorLangId == python && resourceExtname == .ipynb && !notebookEditorFocused && isWorkspaceTrusted","command":"jupyter.importnotebook","group":"Jupyter3@1"},{"when":"editorFocus && editorLangId == python && jupyter.hascodecells && !notebookEditorFocused && isWorkspaceTrusted","command":"jupyter.exportfileasnotebook","group":"Jupyter3@2"},{"when":"editorFocus && editorLangId == python && jupyter.hascodecells && !notebookEditorFocused && isWorkspaceTrusted","command":"jupyter.exportfileandoutputasnotebook","group":"Jupyter3@3"}],"editor.interactiveWindow.context":[{"when":"editorFocus && editorLangId == python && jupyter.hascodecells && !notebookEditorFocused && isWorkspaceTrusted","command":"jupyter.runallcells","group":"Jupyter2"},{"when":"editorFocus && editorLangId == python && jupyter.hascodecells && !notebookEditorFocused && isWorkspaceTrusted","command":"jupyter.runcurrentcell","group":"Jupyter2"},{"when":"editorFocus && editorLangId == python && jupyter.hascodecells && !notebookEditorFocused && isWorkspaceTrusted","command":"jupyter.runcurrentcelladvance","group":"Jupyter2"},{"command":"jupyter.runFileInteractive","group":"Jupyter2","when":"editorFocus && editorLangId == python && !notebookEditorFocused && isWorkspaceTrusted"},{"command":"jupyter.runfromline","group":"Jupyter2","when":"editorFocus && editorLangId == python && !notebookEditorFocused && isWorkspaceTrusted"},{"command":"jupyter.runtoline","group":"Jupyter2","when":"editorFocus && editorLangId == python && !notebookEditorFocused && isWorkspaceTrusted"},{"command":"jupyter.execSelectionInteractive","group":"Jupyter2","when":"editorFocus && editorLangId == python && !notebookEditorFocused && isWorkspaceTrusted"}],"editor/title":[{"command":"jupyter.restartkernel","title":"Restart Kernel","group":"navigation@1","when":"notebookKernel =~ /^ms-toolsai.jupyter\\// && notebookType == 'jupyter-notebook' && isWorkspaceTrusted && jupyter.notebookeditor.canrestartNotebookkernel && config.notebook.globalToolbar != true"},{"command":"jupyter.openVariableView","title":"Open Variables View","group":"navigation@2","when":"notebookKernel =~ /^ms-toolsai.jupyter\\// && notebookType == 'jupyter-notebook' && isWorkspaceTrusted && config.notebook.globalToolbar != true && jupyter.ispythonnotebook"},{"command":"jupyter.openOutlineView","title":"Show Table Of Contents (Outline View)","group":"navigation@3","when":"notebookKernel =~ /^ms-toolsai.jupyter\\// && notebookType == 'jupyter-notebook' && config.jupyter.showOutlineButtonInNotebookToolbar && config.notebook.globalToolbar != true"},{"command":"jupyter.notebookeditor.export","title":"Export As","group":"navigation@4","when":"notebookType == 'jupyter-notebook' && isWorkspaceTrusted && config.notebook.globalToolbar != true"},{"command":"jupyter.continueEditSessionInCodespace","group":"navigation@5","when":"notebookType == 'jupyter-notebook' && jupyter.kernelSource == 'github-codespaces' && config.notebook.globalToolbar != true"}],"notebook/toolbar":[{"command":"jupyter.restartkernel","group":"navigation/execute@5","when":"notebookKernel =~ /^ms-toolsai.jupyter\\// && notebookType == 'jupyter-notebook' && isWorkspaceTrusted && jupyter.kernel.isjupyter"},{"command":"jupyter.openVariableView","group":"navigation@1","when":"notebookKernel =~ /^ms-toolsai.jupyter\\// && notebookType == 'jupyter-notebook' && isWorkspaceTrusted && jupyter.ispythonnotebook && jupyter.kernel.isjupyter"},{"command":"jupyter.openOutlineView","group":"navigation@2","when":"notebookType == 'jupyter-notebook' && config.jupyter.showOutlineButtonInNotebookToolbar"},{"command":"jupyter.continueEditSessionInCodespace","group":"navigation@3","when":"notebookType == 'jupyter-notebook' && jupyter.kernelSource == 'github-codespaces'"},{"command":"jupyter.notebookeditor.export","group":"Jupyter","when":"notebookType == 'jupyter-notebook' && isWorkspaceTrusted"},{"command":"jupyter.replayPylanceLogStep","group":"navigation@1","when":"notebookType == 'jupyter-notebook' && isWorkspaceTrusted && jupyter.replayLogLoaded"}],"notebook/cell/title":[{"command":"jupyter.runByLine","when":"notebookKernel =~ /^ms-toolsai.jupyter\\// && notebookType == jupyter-notebook && jupyter.ispythonnotebook && notebookCellType == code && isWorkspaceTrusted && resource not in jupyter.notebookeditor.runByLineDocuments || !notebookKernel && notebookType == jupyter-notebook && jupyter.ispythonnotebook && notebookCellType == code && isWorkspaceTrusted","group":"inline/cell@0"},{"command":"jupyter.runByLineNext","when":"notebookCellResource in jupyter.notebookeditor.runByLineCells","group":"inline/cell@0"},{"command":"jupyter.runByLineStop","when":"notebookCellResource in jupyter.notebookeditor.runByLineCells && notebookCellToolbarLocation == left","group":"inline/cell@1"},{"command":"jupyter.runByLineStop","when":"notebookCellResource in jupyter.notebookeditor.runByLineCells && notebookCellToolbarLocation == right","group":"inline/cell@0"}],"notebook/cell/execute":[{"command":"jupyter.runAndDebugCell","when":"notebookKernel =~ /^ms-toolsai.jupyter\\// && jupyter.ispythonnotebook && notebookCellType == code && isWorkspaceTrusted && resource not in jupyter.notebookeditor.debugDocuments || !notebookKernel && jupyter.ispythonnotebook && notebookCellType == code && isWorkspaceTrusted"}],"interactive/toolbar":[{"command":"jupyter.interactive.clearAllCells","group":"navigation@0","when":"isWorkspaceTrusted && notebookKernel =~ /^ms-toolsai.jupyter\\// || isWorkspaceTrusted && !notebookKernel"},{"command":"jupyter.restartkernel","group":"navigation@1","when":"isWorkspaceTrusted && notebookKernel =~ /^ms-toolsai.jupyter\\// || isWorkspaceTrusted && !notebookKernel"},{"command":"jupyter.openVariableView","group":"navigation@3","when":"isWorkspaceTrusted && notebookKernel =~ /^ms-toolsai.jupyter\\// || isWorkspaceTrusted && !notebookKernel"},{"command":"jupyter.interactive.exportasnotebook","group":"navigation@4","when":"isWorkspaceTrusted && notebookKernel =~ /^ms-toolsai.jupyter\\// || isWorkspaceTrusted && !notebookKernel"},{"command":"jupyter.interactive.exportas","group":"navigation@5","when":"isWorkspaceTrusted && notebookKernel =~ /^ms-toolsai.jupyter\\// || isWorkspaceTrusted && !notebookKernel"},{"command":"jupyter.expandallcells","group":"navigation@6","when":"isWorkspaceTrusted && notebookKernel =~ /^ms-toolsai.jupyter\\// || isWorkspaceTrusted && !notebookKernel"},{"command":"jupyter.collapseallcells","group":"navigation@7","when":"isWorkspaceTrusted && notebookKernel =~ /^ms-toolsai.jupyter\\// || isWorkspaceTrusted && !notebookKernel"}],"interactive/cell/title":[{"command":"jupyter.interactive.copyCell","group":"inline@0","when":"isWorkspaceTrusted && notebookKernel =~ /^ms-toolsai.jupyter\\// || isWorkspaceTrusted && !notebookKernel"},{"command":"jupyter.interactive.goToCode","group":"inline@1","when":"isWorkspaceTrusted && notebookKernel =~ /^ms-toolsai.jupyter\\// || isWorkspaceTrusted && !notebookKernel"}],"explorer/context":[{"when":"resourceLangId == python && !notebookEditorFocused && isWorkspaceTrusted","command":"jupyter.runFileInteractive","group":"Jupyter2"},{"when":"resourceExtname == .ipynb && isWorkspaceTrusted","command":"jupyter.importnotebookfile","group":"Jupyter"}],"commandPalette":[{"command":"jupyter.replayPylanceLog","title":"Replay Pylance Log","when":"jupyter.development && isWorkspaceTrusted"},{"command":"jupyter.interactive.copyCell","when":"false"},{"command":"jupyter.exportAsPythonScript","title":"Export to Python Script","category":"Jupyter","when":"jupyter.isnativeactive && isWorkspaceTrusted && jupyter.ispythonnotebook && isWorkspaceTrusted"},{"command":"jupyter.refreshDataViewer","category":"Jupyter","when":"isWorkspaceTrusted"},{"command":"jupyter.exportToHTML","title":"Export to HTML","category":"Jupyter","when":"jupyter.isnativeactive && isWorkspaceTrusted"},{"command":"jupyter.exportToPDF","title":"Export to PDF","category":"Jupyter","when":"jupyter.isnativeactive && isWorkspaceTrusted"},{"command":"jupyter.insertCellBelowPosition","title":"Insert Cell Below Position","category":"Jupyter","when":"jupyter.hascodecells && !notebookEditorFocused"},{"command":"jupyter.insertCellBelow","title":"Insert Cell Below","category":"Jupyter","when":"jupyter.hascodecells && !notebookEditorFocused"},{"command":"jupyter.insertCellAbove","title":"Insert Cell Above","category":"Jupyter","when":"jupyter.hascodecells && !notebookEditorFocused"},{"command":"jupyter.deleteCells","title":"Delete Selected Cells","category":"Jupyter","when":"jupyter.hascodecells && !notebookEditorFocused"},{"command":"jupyter.selectCell","title":"Select Cell","category":"Jupyter","when":"jupyter.hascodecells && !notebookEditorFocused"},{"command":"jupyter.selectCellContents","title":"Select Cell Contents","category":"Jupyter","when":"jupyter.hascodecells && !notebookEditorFocused"},{"command":"jupyter.extendSelectionByCellAbove","title":"Extend Selection By Cell Above","category":"Jupyter","when":"jupyter.hascodecells && !notebookEditorFocused"},{"command":"jupyter.extendSelectionByCellBelow","title":"Extend Selection By Cell Below","category":"Jupyter","when":"jupyter.hascodecells && !notebookEditorFocused"},{"command":"jupyter.moveCellsUp","title":"Move Selected Cells Up","category":"Jupyter","when":"jupyter.hascodecells && !notebookEditorFocused"},{"command":"jupyter.moveCellsDown","title":"Move Selected Cells Down","category":"Jupyter","when":"jupyter.hascodecells && !notebookEditorFocused"},{"command":"jupyter.changeCellToMarkdown","title":"Change Cell to Markdown","category":"Jupyter","when":"jupyter.hascodecells && !notebookEditorFocused"},{"command":"jupyter.changeCellToCode","title":"Change Cell to Code","category":"Jupyter","when":"jupyter.hascodecells && !notebookEditorFocused"},{"command":"jupyter.gotoNextCellInFile","title":"Go to Next Cell","category":"Jupyter","when":"jupyter.hascodecells && !notebookEditorFocused"},{"command":"jupyter.gotoPrevCellInFile","title":"Go to Previous Cell","category":"Jupyter","when":"jupyter.hascodecells && !notebookEditorFocused"},{"command":"jupyter.runcurrentcell","title":"Run Current Cell","category":"Jupyter","when":"jupyter.hascodecells && jupyter.ispythonornativeactive && !jupyter.havenativecells && isWorkspaceTrusted"},{"command":"jupyter.runcurrentcelladvance","title":"Run Current Cell And Advance","category":"Jupyter","when":"jupyter.hascodecells && jupyter.ispythonornativeactive && !jupyter.havenativecells && isWorkspaceTrusted"},{"command":"jupyter.runcurrentcellandallbelow.palette","title":"Run Current Cell and Below","category":"Jupyter","when":"jupyter.hascodecells && jupyter.ispythonornativeactive && !jupyter.havenativecells && isWorkspaceTrusted"},{"command":"jupyter.runallcellsabove.palette","title":"Run Cells Above Current Cell","category":"Jupyter","when":"jupyter.hascodecells && jupyter.ispythonornativeactive && !jupyter.havenativecells && isWorkspaceTrusted"},{"command":"jupyter.debugcurrentcell.palette","title":"Debug Current Cell","category":"Jupyter","when":"editorLangId == python && jupyter.hascodecells && isWorkspaceTrusted"},{"command":"jupyter.createnewinteractive","title":"Create Interactive Window","category":"Jupyter","when":"isWorkspaceTrusted"},{"command":"jupyter.runallcells","title":"Run All Cells","category":"Jupyter","when":"jupyter.hascodecells && jupyter.ispythonornativeactive && isWorkspaceTrusted"},{"command":"jupyter.scrolltocell","title":"Scroll Cell Into View","category":"Jupyter","when":"false"},{"command":"jupyter.debugcell","title":"Debug Cell","category":"Jupyter","when":"config.noExists"},{"command":"jupyter.runcell","title":"Run Cell","category":"Jupyter","when":"config.noExists"},{"command":"jupyter.runFileInteractive","title":"Run Current File in Interactive Window","category":"Jupyter","when":"editorLangId == python && !notebookEditorFocused && isWorkspaceTrusted"},{"command":"jupyter.debugFileInteractive","title":"Debug Current File in Interactive Window","category":"Jupyter","when":"editorLangId == python && !notebookEditorFocused && isWorkspaceTrusted"},{"command":"jupyter.importnotebook","title":"Import Jupyter Notebook","category":"Jupyter","when":"isWorkspaceTrusted"},{"command":"jupyter.exportfileasnotebook","title":"Export Current Python File as Jupyter Notebook","category":"Jupyter","when":"jupyter.hascodecells && jupyter.ispythonorinteractiveeactive && !notebookEditorFocused && isWorkspaceTrusted"},{"command":"jupyter.exportfileandoutputasnotebook","title":"Export Current Python File and Output as Jupyter Notebook","category":"Jupyter","when":"jupyter.hascodecells && jupyter.ispythonorinteractiveeactive && !notebookEditorFocused && isWorkspaceTrusted"},{"command":"jupyter.restartkernel","title":"Restart Kernel","category":"Jupyter","when":"(jupyter.ispythonorinteractiveeactive || jupyter.isnativeactive) && isWorkspaceTrusted"},{"command":"jupyter.notebookeditor.removeallcells","title":"Delete All Notebook Editor Cells","category":"Notebook","when":"jupyter.havenativecells && jupyter.isnativeactive && isWorkspaceTrusted"},{"command":"jupyter.notebookeditor.addcellbelow","title":"Add Empty Cell to Notebook File","category":"Notebook","when":"jupyter.isnativeactive && isWorkspaceTrusted"},{"command":"jupyter.notebookeditor.expandallcells","title":"Expand All Interactive Cells","category":"Notebook","when":"notebookEditorFocused && notebookType == 'jupyter-notebook'"},{"command":"jupyter.notebookeditor.collapseallcells","title":"Collapse All Interactive Cells","category":"Notebook","when":"notebookEditorFocused && notebookType == 'jupyter-notebook'"},{"command":"jupyter.expandallcells","title":"Expand All Interactive Cells","shortTitle":"Expand","category":"Jupyter","when":"jupyter.isinteractiveactive"},{"command":"jupyter.collapseallcells","title":"Collapse All Interactive Cells","shortTitle":"Collapse","category":"Jupyter","when":"jupyter.isinteractiveactive"},{"command":"jupyter.exportoutputasnotebook","title":"Export Interactive Window as Jupyter Notebook","category":"Jupyter","when":"jupyter.isinteractiveactive"},{"command":"jupyter.runcellandallbelow","category":"Jupyter","when":"config.noExists"},{"command":"jupyter.runallcellsabove","category":"Jupyter","when":"config.noExists"},{"command":"jupyter.debugcontinue","category":"Jupyter","when":"config.noExists"},{"command":"jupyter.debugstop","category":"Jupyter","when":"config.noExists"},{"command":"jupyter.debugstepover","category":"Jupyter","when":"config.noExists"},{"command":"jupyter.debugcell","category":"Jupyter","when":"config.noExists"},{"command":"jupyter.addcellbelow","title":"Add Empty Cell to File","category":"Jupyter","when":"jupyter.hascodecells && jupyter.ispythonornativeactive"},{"command":"jupyter.createnewnotebook","category":"Jupyter","when":"false"},{"command":"jupyter.runtoline","category":"Jupyter","when":"config.noExists"},{"command":"jupyter.runfromline","category":"Jupyter","when":"config.noExists"},{"command":"jupyter.execSelectionInteractive","category":"Jupyter","when":"editorLangId == python && !notebookEditorFocused && isWorkspaceTrusted"},{"command":"jupyter.latestExtension","title":"Download the latest version of the Jupyter Extension","category":"Jupyter","when":"false"},{"command":"jupyter.export","title":"Export As","category":"Jupyter","when":"false"},{"command":"jupyter.notebookeditor.export","title":"Export As","category":"Notebook","when":"false"},{"command":"jupyter.resetLoggingLevel","title":"Reset Logging Level","category":"Jupyter","when":"config.jupyter.logging.level != error"},{"command":"jupyter.enableDebugLogging","title":"Enable Debug Logging","category":"Jupyter","when":"config.jupyter.logging.level != debug"},{"command":"jupyter.showDataViewer","category":"Jupyter","when":"false"},{"command":"jupyter.openVariableView","title":"Open Variables View","category":"Jupyter","when":"notebookType == jupyter-notebook && isWorkspaceTrusted"},{"command":"jupyter.openOutlineView","title":"Show Table Of Contents (Outline View)","category":"Jupyter","when":"notebookType == jupyter-notebook && isWorkspaceTrusted"},{"command":"jupyter.interactive.goToCode","when":"false"},{"command":"jupyter.interactive.clearAllCells","when":"editorFocus && editorLangId == python || activeEditor == 'workbench.editor.interactive'"},{"command":"jupyter.clearSavedJupyterUris","title":"Clear Jupyter Remote Server List"}],"debug/variables/context":[{"command":"jupyter.showDataViewer","group":"1_view","when":"debugProtocolVariableMenuContext == 'viewableInDataViewer'"}],"editor/title/run":[{"command":"jupyter.runFileInteractive","group":"jupyter","when":"resourceLangId == python && !isInDiffEditor && !notebookEditorFocused && isWorkspaceTrusted"}]},"configuration":{"type":"object","title":"Jupyter","properties":{"jupyter.experiments.enabled":{"type":"boolean","default":true,"description":"Enables/disables A/B tests.","scope":"machine"},"jupyter.showVariableViewWhenDebugging":{"type":"boolean","default":false,"description":"Bring up the Variable View when starting a Run by Line session.","scope":"resource"},"jupyter.logging.level":{"type":"string","default":"debug","enum":["off","error","warn","info","debug","verbose"],"description":"The logging level the extension logs at."},"jupyter.experiments.optInto":{"type":"array","default":[],"items":{"enum":["FastKernelPicker","PasswordManager","NewRemoteUriStorage","NewJupyterSession"]},"markdownDescription":"List of experiment to opt into. If empty, user is assigned the default experiment groups. [Learn more](https://github.com/microsoft/vscode-jupyter/wiki/Experiments).","scope":"application"},"jupyter.experiments.optOutFrom":{"type":"array","default":[],"items":{"enum":["FastKernelPicker","PasswordManager","NewRemoteUriStorage","NewJupyterSession"]},"markdownDescription":"List of experiment to opt out of. If empty, user is assigned the default experiment groups. [Learn more](https://github.com/microsoft/vscode-jupyter/wiki/Experiments).","scope":"application"},"jupyter.widgetScriptSources":{"type":"array","default":[],"items":{"type":"string","enum":["jsdelivr.com","unpkg.com"],"enumDescriptions":["Loads widget (javascript) scripts from https://www.jsdelivr.com/","Loads widget (javascript) scripts from https://unpkg.com/"]},"uniqueItems":true,"markdownDescription":"Defines the location and order of the sources where scripts files for Widgets are downloaded from (e.g. ipywidgest, bqplot, beakerx, ipyleaflet, etc). Not selecting any of these could result in widgets not rendering or function correctly. See [here](https://aka.ms/PVSCIPyWidgets) for more information. Once updated you will need to restart the Kernel.","scope":"resource"},"jupyter.askForLargeDataFrames":{"type":"boolean","default":true,"description":"Warn the user before trying to open really large data frames.","scope":"application"},"jupyter.askForKernelRestart":{"type":"boolean","default":true,"description":"Warn the user before restarting a kernel."},"jupyter.exportWithOutputEnabled":{"type":"boolean","default":false,"description":"Enable exporting a python file into a jupyter notebook and run all cells when doing so.","scope":"resource"},"jupyter.jupyterLaunchTimeout":{"type":"number","default":60000,"description":"Amount of time (in ms) to wait for the Jupyter Notebook server to start."},"jupyter.jupyterLaunchRetries":{"type":"number","default":3,"description":"Number of times to attempt to connect to the Jupyter Notebook"},"jupyter.jupyterCommandLineArguments":{"type":"array","default":[],"description":"If and when a Jupyter server is started, these arguments will be passed to into the Jupyter Notebook CLI. By default this list is generated by the Jupyter Extension.","scope":"resource"},"jupyter.notebookFileRoot":{"type":"string","default":"${fileDirname}","description":"Set the root directory for running notebooks and the Interactive window.","scope":"resource"},"jupyter.searchForJupyter":{"type":"boolean","default":true,"deprecationMessage":"This setting is deprecated and will be removed in a future release.","description":"Search all installed Python interpreters for a Jupyter installation when starting the Interactive window","scope":"resource"},"jupyter.useDefaultConfigForJupyter":{"type":"boolean","default":true,"description":"When running Jupyter locally, create a default empty Jupyter config"},"jupyter.jupyterInterruptTimeout":{"type":"number","default":10000,"description":"Amount of time (in ms) to wait for an interrupt before asking to restart the Jupyter kernel."},"jupyter.sendSelectionToInteractiveWindow":{"type":"boolean","default":false,"description":"When pressing shift+enter, send selected code in a Python file to the Jupyter interactive window as opposed to the Python terminal.","deprecationMessage":"This setting has been deprecated in favor of jupyter.interactiveWindow.textEditor.executeSelection.","scope":"resource"},"jupyter.interactiveWindow.textEditor.executeSelection":{"type":"boolean","default":false,"description":"When pressing shift+enter, send selected code in a Python file to the Jupyter interactive window as opposed to the Python terminal.","scope":"resource"},"jupyter.variableExplorerExclude":{"type":"string","default":"module;function;builtin_function_or_method;ABCMeta;type;ModelMetaclass","description":"Types to exclude from showing in the Interactive variable explorer","scope":"resource"},"jupyter.codeRegularExpression":{"type":"string","default":"^(#\\s*%%|#\\s*\\|#\\s*In\\[\\d*?\\]|#\\s*In\\[ \\])","description":"Regular expression used to identify code cells. All code until the next match is considered part of this cell.","deprecationMessage":"This setting has been deprecated in favor of jupyter.interactiveWindow.cellMarker.codeRegex.","scope":"resource"},"jupyter.interactiveWindow.cellMarker.codeRegex":{"type":"string","default":"^(#\\s*%%|#\\s*\\|#\\s*In\\[\\d*?\\]|#\\s*In\\[ \\])","description":"Regular expression used to identify code cells. All code until the next match is considered part of this cell.","scope":"resource"},"jupyter.defaultCellMarker":{"type":"string","default":"# %%","description":"Cell marker used for delineating a cell in a python file.","deprecationMessage":"This setting has been deprecated in favor of jupyter.interactiveWindow.cellMarker.default","scope":"resource"},"jupyter.interactiveWindow.cellMarker.default":{"type":"string","default":"# %%","description":"Cell marker used for delineating a cell in a python file.","scope":"resource"},"jupyter.markdownRegularExpression":{"type":"string","default":"^(#\\s*%%\\s*\\[markdown\\]|#\\s*\\)","description":"Regular expression used to identify markdown cells. All comments after this expression are considered part of the markdown.","deprecationMessage":"This setting has been deprecated in favor of jupyter.interactiveWindow.cellMarker.markdownRegex.","scope":"resource"},"jupyter.interactiveWindow.cellMarker.markdownRegex":{"type":"string","default":"^(#\\s*%%\\s*\\[markdown\\]|#\\s*\\)","description":"Regular expression used to identify markdown cells. All comments after this expression are considered part of the markdown.","scope":"resource"},"jupyter.ignoreVscodeTheme":{"type":"boolean","default":false,"deprecationMessage":"This setting is deprecated and will be removed in the next release.","description":"Don't use the VS Code theme in the Interactive window (requires reload of VS Code). This forces the Interactive window to use 'Light +(default light)' and disables matplotlib defaults."},"jupyter.themeMatplotlibPlots":{"type":"boolean","default":false,"description":"In the Interactive window and Notebook Editor theme matplotlib outputs to match the VS Code editor theme."},"jupyter.decorateCells":{"type":"boolean","default":true,"description":"Draw a highlight behind the currently active cell, or all cells, in a python file.","deprecationMessage":"This setting has been deprecated in favor of jupyter.interactiveWindow.cellMarker.decorateCells.","scope":"resource"},"jupyter.interactiveWindow.cellMarker.decorateCells":{"type":"string","enum":["currentCell","allCells","None"],"default":"currentCell","description":"Draw a highlight behind the currently active cell, or all cells, in a python file.","scope":"resource"},"jupyter.enableCellCodeLens":{"type":"boolean","default":true,"description":"Enables code lens for 'cells' in a python file.","deprecationMessage":"This setting has been deprecated in favor of jupyter.interactiveWindow.codeLens.enable.","scope":"resource"},"jupyter.interactiveWindow.codeLens.enable":{"type":"boolean","default":true,"description":"Enables code lens for 'cells' in a python file.","scope":"resource"},"jupyter.enableAutoMoveToNextCell":{"type":"boolean","default":true,"description":"Enables moving to the next cell when clicking on a 'Run Cell' code lens.","deprecationMessage":"This setting has been deprecated in favor of jupyter.interactiveWindow.textEditor.autoMoveToNextCell.","scope":"resource"},"jupyter.interactiveWindow.textEditor.autoMoveToNextCell":{"type":"boolean","default":true,"description":"Enables moving to the next cell when clicking on a 'Run Cell' code lens.","scope":"resource"},"jupyter.allowUnauthorizedRemoteConnection":{"type":"boolean","default":false,"description":"Allow for connecting the Interactive window to a https Jupyter server that does not have valid certificates. This can be a security risk, so only use for known and trusted servers."},"jupyter.generateSVGPlots":{"type":"boolean","default":false,"description":"Generate SVG output for notebook plots. This allows for better display in the plot viewer at the cost of generation speed and file size.","deprecationMessage":"This setting is deprecated and will be removed in the next release.","scope":"resource"},"jupyter.codeLenses":{"type":"string","default":"jupyter.runcell, jupyter.runallcellsabove, jupyter.debugcell","description":"Set of commands to put as code lens above a cell.","deprecationMessage":"This setting has been deprecated in favor of jupyter.interactiveWindow.codeLens.commands.","scope":"resource"},"jupyter.interactiveWindow.codeLens.commands":{"type":"string","default":"jupyter.runcell, jupyter.runallcellsabove, jupyter.debugcell","description":"Set of commands to put as code lens above a cell.","scope":"resource"},"jupyter.debugCodeLenses":{"type":"string","default":"jupyter.debugcontinue, jupyter.debugstop, jupyter.debugstepover","description":"Set of debug commands to put as code lens above a cell while debugging.","deprecationMessage":"This setting has been deprecated in favor of jupyter.interactiveWindow.codeLes.debugCommands.","scope":"resource"},"jupyter.interactiveWindow.codeLes.debugCommands":{"type":"string","default":"jupyter.debugcontinue, jupyter.debugstop, jupyter.debugstepover","description":"Set of debug commands to put as code lens above a cell while debugging.","scope":"resource"},"jupyter.debugpyDistPath":{"type":"string","default":"","description":"Path to debugpy bits for debugging cells.","scope":"resource"},"jupyter.stopOnFirstLineWhileDebugging":{"type":"boolean","default":true,"description":"When debugging a cell, stop on the first line.","scope":"resource"},"jupyter.remoteDebuggerPort":{"type":"number","default":-1,"description":"When debugging a cell, open this port on the remote box. If -1 is specified, a random port between 8889 and 9000 will be attempted.","deprecationMessage":"This setting is deprecated and will be removed in the next release.","scope":"resource"},"jupyter.disableJupyterAutoStart":{"type":"boolean","default":false,"description":"When true, disables Jupyter from being automatically started for you. You must instead run a cell to start Jupyter."},"jupyter.addGotoCodeLenses":{"type":"boolean","default":true,"description":"After running a cell, add a 'Goto' code lens on the cell. Note, disabling all code lenses disables this code lens as well.","deprecationMessage":"This setting has been deprecated in favor of jupyter.interactiveWindow.codeLens.enableGotoCell.","scope":"resource"},"jupyter.interactiveWindow.codeLens.enableGotoCell":{"type":"boolean","default":true,"description":"After running a cell, add a 'Goto' code lens on the cell. Note, disabling all code lenses disables this code lens as well.","scope":"resource"},"jupyter.variableQueries":{"type":"array","markdownDescription":"Language to query mapping for returning the list of active variables in a Jupyter kernel. Used by the Variable Explorer in both the Interactive Window and Notebooks. Example:\n```\n[\n {\n \"language\": \"python\",\n \"query\": \"%who_ls\",\n \"parseExpr\": \"'(\\\\w+)'\"\n }\n]\n```","deprecationMessage":"This setting is deprecated and will be removed in the next release.","scope":"machine","examples":[[{"language":"python","query":"_rwho_ls = %who_ls\\nprint(_rwho_ls)","parseExpr":"'(\\w+)'"},{"language":"julia","query":"whos","parseExpr":"'(\\w+)'"}]]},"jupyter.kernels.excludePythonEnvironments":{"type":"array","items":{"type":"string"},"default":[],"markdownDescription":"List of Python environments to be excluded from the Kernel picker.","scope":"machine-overridable","examples":[["~/miniconda3/envs/tf/scripts/python.exe","~/miniconda3/envs/ds"]]},"jupyter.kernels.trusted":{"type":"array","items":{"type":"string"},"default":[],"markdownDescription":"Enter fully qualified paths to Kernel specification files that are to be trusted. E.g. 'C:\\Program Data\\Jupyter\\kernels\\python3\\kernel.json'. \n**Note**: Kernels can execute code with user privileges. Click [here](https://aka.ms/JupyterTrustedKernelPaths) for further details.","scope":"machine"},"jupyter.interactiveWindowMode":{"type":"string","enum":["perFile","single","multiple"],"scope":"resource","description":"Behavior of the Interactive Window. 'perFile' will create a new interactive window for every file that runs a cell. 'single' allows a single window. 'multiple' allows the creation of multiple.","deprecationMessage":"This setting has been deprecated in favor of jupyter.interactiveWindow.creationMode.","default":"multiple"},"jupyter.interactiveWindow.creationMode":{"type":"string","enum":["perFile","single","multiple"],"scope":"resource","description":"Behavior of the Interactive Window. 'perFile' will create a new interactive window for every file that runs a cell. 'single' allows a single window. 'multiple' allows the creation of multiple.","default":"multiple"},"jupyter.pythonCellFolding":{"type":"boolean","default":true,"description":"Enable folding regions for code cells in Python files. This setting requires a reload of VS Code.","deprecationMessage":"This setting has been deprecated in favor of jupyter.interactiveWindow.textEditor.cellFolding.","scope":"resource"},"jupyter.interactiveWindow.textEditor.cellFolding":{"type":"boolean","default":true,"description":"Enable folding regions for code cells in Python files. This setting requires a reload of VS Code.","scope":"resource"},"jupyter.interactiveWindowViewColumn":{"type":"string","enum":["beside","active","secondGroup"],"scope":"resource","description":"Where to open an Interactive Window that is not associated with a python file. 'beside' will open the interactive window to the right of the active editor. 'active' will open the interactive window in place of the active editor. 'secondGroup' will open the interactive window in the second editor group.","deprecationMessage":"This setting has been deprecated in favor of jupyter.interactiveWindow.viewColumn.","default":"secondGroup"},"jupyter.interactiveWindow.viewColumn":{"type":"string","enum":["beside","active","secondGroup"],"scope":"resource","description":"Where to open an Interactive Window that is not associated with a python file. 'beside' will open the interactive window to the right of the active editor. 'active' will open the interactive window in place of the active editor. 'secondGroup' will open the interactive window in the second editor group.","default":"secondGroup"},"jupyter.magicCommandsAsComments":{"type":"boolean","default":false,"description":"Uncomment shell assignments (#!), line magic (#!%) and cell magic (#!%%) when parsing code cells.","deprecationMessage":"This setting has been deprecated in favor of jupyter.interactiveWindow.textEditor.magicCommandsAsComments."},"jupyter.interactiveWindow.textEditor.magicCommandsAsComments":{"type":"boolean","default":false,"description":"Uncomment shell assignments (#!), line magic (#!%) and cell magic (#!%%) when parsing code cells."},"jupyter.pythonExportMethod":{"type":"string","enum":["direct","commentMagics","nbconvert"],"default":"direct","description":"The method to use when exporting a notebook to a Python file. 'direct' will copy over the code directly as is. 'commentMagics' will comment out lines starting with line magics (%), cell magics (%%), and shell commands(!). 'nbconvert' will install nbconvert and use that for the conversion which can translate iPython syntax into Python syntax.","scope":"application"},"jupyter.runStartupCommands":{"type":"array","default":"","description":"A series of Python instructions or iPython magic commands. Can be either an array of strings or a single string with commands separated by '\\n'. Commands will be silently executed whenever the interactive window loads. For instance, set this to '%load_ext autoreload\\n%autoreload 2' to automatically reload changes made to imported files without having to restart the interactive session.","scope":"application"},"jupyter.debugJustMyCode":{"type":"boolean","default":true,"description":"When debugging, only step through user-written code. Disable this to allow stepping into library code.","scope":"resource"},"jupyter.showOutlineButtonInNotebookToolbar":{"type":"boolean","default":true,"description":"Show the Outline button in the Jupyter notebook toolbar."},"jupyter.newCellOnRunLast":{"type":"boolean","default":true,"description":"Append a new empty cell to an interactive window file on running the currently last cell.","deprecationMessage":"This setting has been deprecated in favor of jupyter.interactiveWindow.textEditor.autoAddNewCell.","scope":"resource"},"jupyter.interactiveWindow.textEditor.autoAddNewCell":{"type":"boolean","default":true,"description":"Append a new empty cell to an interactive window file on running the currently last cell.","scope":"resource"},"jupyter.pythonCompletionTriggerCharacters":{"type":"string","default":".%'\"","description":"Characters which trigger auto completion on a python jupyter kernel.","scope":"application"},"jupyter.logKernelOutputSeparately":{"type":"boolean","default":false,"description":"Creates separate output panels for kernels/jupyter server console output"},"jupyter.excludeUserSitePackages":{"type":"boolean","default":false,"description":"Add PYTHONNOUSERSITE to kernels before starting. This prevents global/user site-packages from being used in the PYTHONPATH of the kernel.","scope":"application"},"jupyter.enableExtendedKernelCompletions":{"type":"boolean","default":false,"markdownDescription":"Enables Jedi support for extended IntelliSense completions in running Jupyter kernels (see this [setting](https://ipython.readthedocs.io/en/stable/config/options/terminal.html?highlight=use_jedi#configtrait-Completer.use_jedi)). This can greatly impact notebook cell execution performance. Use with caution.","scope":"application"}}},"languages":[{"id":"raw"},{"id":"julia","aliases":["Julia","julia"],"extensions":[".jl"]}],"notebookPreload":[{"type":"jupyter-notebook","localResourceRoots":["./temp"],"entrypoint":"./out/webviews/webview-side/ipywidgetsKernel/ipywidgetsKernel.js"},{"type":"interactive","localResourceRoots":["./temp"],"entrypoint":"./out/webviews/webview-side/ipywidgetsKernel/ipywidgetsKernel.js"}],"notebookRenderer":[{"id":"jupyter-ipywidget-renderer","entrypoint":"./out/webviews/webview-side/ipywidgetsRenderer/ipywidgetsRenderer.js","displayName":"Jupyter IPyWidget Renderer","mimeTypes":["application/vnd.jupyter.widget-view+json"],"requiresMessaging":"always"}],"viewsContainers":{"activitybar":[{"id":"jupyter","title":"Jupyter","icon":"$(notebook)"}],"panel":[{"id":"jupyter-variables","title":"Jupyter","icon":"$(notebook)"}]},"views":{"jupyter-variables":[{"type":"webview","id":"jupyterViewVariables","name":"Variables","when":"jupyter.hasNativeNotebookOrInteractiveWindowOpen"}]},"debuggers":[{"type":"Python Kernel Debug Adapter","label":"Python Kernel Debug Adapter"},{"type":"Python Interactive Window Debug Adapter","label":"Python Interactive Window"}]},"enabledApiProposals":["notebookDeprecated","notebookMessaging","notebookMime","notebookCellExecutionState","portsAttributes","quickPickSortByLabel","notebookKernelSource","interactiveWindow","notebookControllerAffinityHidden","quickPickItemTooltip","notebookExecution"],"scripts":{"package":"gulp clean && gulp prePublishBundle && vsce package -o ms-toolsai-jupyter-insiders.vsix","packagePreRelease":"gulp clean && gulp prePublishBundle && vsce package --pre-release -o ms-toolsai-jupyter-insiders.vsix","prePublishBundleStable":"cross-env IS_PRE_RELEASE_VERSION_OF_JUPYTER_EXTENSION=false gulp prePublishBundle","prePublishBundlePreRelease":"cross-env IS_PRE_RELEASE_VERSION_OF_JUPYTER_EXTENSION=true gulp prePublishBundle","prePublishNonBundle":"gulp clean && gulp prePublishNonBundle","createNycFolder":"gulp createNycFolder","validateTranslationFiles":"gulp validateTranslationFiles","compile":"tsc -watch -p ./","compile-no-watch":"tsc -p ./","compiled":"deemon npm run compile","kill-compiled":"deemon --kill npm run compile","compile-webviews-watch":"webpack --config ./build/webpack/webpack.datascience-ui.config.js --watch","compile-web-watch":"webpack --mode development --config ./build/webpack/webpack.extension.web.config.js --stats-error-details --watch --progress","compile-web":"webpack --mode development --config ./build/webpack/webpack.extension.web.config.js","compile-web-test":"cross-env VSC_TEST_BUNDLE=true npm run compile-web","compile-web-test-watch":"cross-env VSC_TEST_BUNDLE=true npm run compile-web-watch","compile-webviews-watchd":"deemon npm run compile-webviews-watch","compile-widgetTester":"cross-env NODE_OPTIONS=--max_old_space_size=9096 webpack --config ./build/webpack/webpack.datascience-ui-widgetTester.config.js --watch","kill-compile-webviews-watchd":"deemon --kill npm run compile-webviews-watch","checkDependencies":"gulp checkDependencies","postinstall":"npm run download-api && node ./build/ci/postInstall.js","installPythonLibs":"gulp installPythonLibs","test:unittests":"mocha --config ./build/.mocha.unittests.js.json ./out/**/*.unit.test.js","test:cover:report":"nyc report --reporter=text --reporter=html --reporter=text-summary --reporter=cobertura","preTestJediLSP":"node ./out/test/languageServers/jedi/lspSetup.js","testJediLSP":"node ./out/test/languageServers/jedi/lspSetup.js && cross-env CODE_TESTS_WORKSPACE=src/test VSC_JUPYTER_CI_TEST_GREP='Language Server:' node ./out/test/testBootstrap.node.js ./out/test/standardTest.node.js && node ./out/test/languageServers/jedi/lspTeardown.node.js","pretestNativeNotebooksInVSCode":"cross-env VSC_JUPYTER_CI_TEST_VSC_CHANNEL=insiders node ./out/test/datascience/dsTestSetup.js","testNativeNotebooksInVSCode":"cross-env CODE_TESTS_WORKSPACE=src/test/datascience VSC_JUPYTER_CI_TEST_VSC_CHANNEL=insiders TEST_FILES_SUFFIX=*.vscode.test,*.vscode.common.test VSC_JUPYTER_FORCE_LOGGING=1 VSC_JUPYTER_LOAD_EXPERIMENTS_FROM_FILE=true node ./out/test/testBootstrap.node.js ./out/test/standardTest.node.js","testNativeNotebooksInVSCodeWithoutTestSuffix":"cross-env CODE_TESTS_WORKSPACE=src/test/datascience VSC_JUPYTER_CI_TEST_VSC_CHANNEL=insiders VSC_JUPYTER_FORCE_LOGGING=1 VSC_JUPYTER_LOAD_EXPERIMENTS_FROM_FILE=true node ./out/test/testBootstrap.node.js ./out/test/standardTest.node.js","pretestNativeNotebooksWithoutPythonInVSCode":"cross-env VSC_JUPYTER_CI_TEST_VSC_CHANNEL=insiders node ./out/test/datascience/dsTestSetup.js","testNativeNotebooksWithoutPythonInVSCode":"cross-env CODE_TESTS_WORKSPACE=src/test/datascience VSC_JUPYTER_CI_TEST_VSC_CHANNEL=insiders TEST_FILES_SUFFIX=*.vscode.test,*.vscode.common.test VSC_JUPYTER_FORCE_LOGGING=1 VSC_JUPYTER_LOAD_EXPERIMENTS_FROM_FILE=true VSC_JUPYTER_CI_TEST_GREP=@nonPython VSC_JUPYTER_CI_TEST_DO_NOT_INSTALL_PYTHON_EXT=true node ./out/test/testBootstrap.node.js ./out/test/standardTest.node.js","testNativeNotebooksAndWebviews":"cross-env CODE_TESTS_WORKSPACE=src/test/datascience VSC_JUPYTER_CI_TEST_VSC_CHANNEL=insiders TEST_FILES_SUFFIX=*.vscode.test,*.vscode.common.test VSC_JUPYTER_FORCE_LOGGING=1 VSC_JUPYTER_CI_TEST_GREP=webview-test VSC_JUPYTER_LOAD_EXPERIMENTS_FROM_FILE=true node ./out/test/testBootstrap.node.js ./out/test/standardTest.node.js","testWebExtension":"node ./build/launchWebTest.js","launchWebExtension":"node ./build/launchWeb.js","testSmoke":"node ./out/test/testBootstrap.node.js ./out/test/smokeTest.node.js","testSmokeLogged":"cross-env VSC_JUPYTER_FORCE_LOGGING=true node --no-force-async-hooks-checks ./out/test/testBootstrap.node.js ./out/test/smokeTest.node.js","lint":"eslint -c .eslintrc.js --ext .ts --ext .tsx src","prettier-fix":"prettier 'src/**/*.ts*' --write && prettier 'build/**/*.js' --write","clean":"gulp clean","updateBuildNumber":"gulp updateBuildNumber","webpack":"webpack","download-api":"vscode-dts dev","postdownload-api":"vscode-dts main","generateTelemetry":"gulp generateTelemetry","openInBrowser":"vscode-test-web --extensionDevelopmentPath=. ./src/test/datascience","startJupyterServer":"node build/preDebugWebTest.js","stopJupyterServer":"node build/postDebugWebTest.js","validateTelemetry":"gulp validateTelemetry","verifyUnhandledErrors":"gulp verifyUnhandledErrors","printTestResults":"gulp printTestResults","setup-precommit-hook":"husky install","webpack-analyze:node":"npx webpack --json --config build/webpack/webpack.extension.node.config.js > out/stats-node.json && yarn webpack-bundle-analyzer out/stats-node.json","webpack-analyze:web":"npx webpack --json --config build/webpack/webpack.extension.web.config.js > out/stats-web.json && yarn webpack-bundle-analyzer out/stats-web.json"},"dependencies":{"@enonic/fnv-plus":"^1.3.0","@fluentui/react":"^7.160.1","@jupyter-widgets/base":"4.0.0","@jupyter-widgets/controls":"3.0.0","@jupyter-widgets/schema":"0.4.0","@jupyterlab/coreutils":"5.1.17","@jupyterlab/nbformat":"3.1.17","@jupyterlab/services":"6.1.17","@lumino/widgets":"^1.28.0","@nteract/messaging":"^7.0.0","@vscode/extension-telemetry":"^0.7.7","@vscode/jupyter-lsp-middleware":"^0.2.50","ajv-keywords":"^3.5.2","ansi-to-html":"^0.6.7","bootstrap":"^4.3.1","bootstrap-less":"^3.3.8","cross-fetch":"^3.1.5","decompress-response":"^4.2.0","encoding":"^0.1.13","fast-deep-equal":"^2.0.1","format-util":"^1.0.5","fs-extra":"^4.0.3","glob":"^7.1.2","iconv-lite":"^0.6.3","inversify":"^6.0.1","isomorphic-ws":"^4.0.1","jquery":"^3.6.0","jsonc-parser":"^2.0.3","lodash":"^4.17.21","marked":"^4.0.10","node-fetch":"^2.6.7","node-gyp-build":"^4.6.0","node-stream-zip":"^1.6.0","pdfkit":"^0.13.0","pidtree":"^0.6.0","portfinder":"^1.0.25","re-resizable":"~6.5.5","react":"^16.5.2","react-data-grid":"^6.0.2-0","react-dom":"^16.5.2","react-redux":"^7.1.1","react-svg-pan-zoom":"3.9.0","react-svgmt":"1.1.11","react-virtualized":"^9.21.1","redux":"^4.0.4","redux-logger":"^3.0.6","reflect-metadata":"^0.1.12","rxjs":"^6.5.4","rxjs-compat":"^6.5.4","safe-buffer":"^5.2.1","sanitize-filename":"^1.6.3","semver":"^5.7.2","slickgrid":"^2.4.17","source-map":"^0.7.3","stack-trace":"0.0.10","string-argv":"^0.3.1","strip-comments":"^2.0.1","styled-components":"^5.2.1","sudo-prompt":"^9.2.1","svg-inline-react":"^3.1.0","svg-to-pdfkit":"^0.1.8","tcp-port-used":"^1.0.1","tmp":"^0.0.29","uint64be":"^1.0.1","underscore":"^1.12.1","url-parse":"^1.5.10","uuid":"^3.3.2","vscode-debugprotocol":"^1.41.0","vscode-jsonrpc":"8.0.2-next.1","vscode-languageclient":"8.0.2-next.5","vscode-languageserver":"8.0.2-next.5","vscode-languageserver-protocol":"3.17.2-next.6","vscode-tas-client":"^0.1.63","ws":"^6.2.2","zeromq":"^6.0.0-beta.16","zeromqold":"npm:zeromq@^6.0.0-beta.6"},"devDependencies":{"@actions/core":"^1.9.1","@actions/github":"^4.0.0","@actions/glob":"^0.3.0","@babel/polyfill":"^7.4.4","@istanbuljs/nyc-config-typescript":"^1.0.2","@sinonjs/fake-timers":"^6.0.1","@types/ansi-regex":"^4.0.0","@types/chai":"^4.1.2","@types/chai-arrays":"^1.0.2","@types/chai-as-promised":"^7.1.0","@types/copy-webpack-plugin":"^6.0.0","@types/cors":"^2.8.6","@types/debug":"^4.1.5","@types/dedent":"^0.7.0","@types/del":"^4.0.0","@types/enzyme":"^3.1.14","@types/enzyme-adapter-react-16":"^1.0.3","@types/event-stream":"^3.3.33","@types/format-util":"^1.0.2","@types/fs-extra":"^5.0.1","@types/get-port":"^3.2.0","@types/glob":"^5.0.35","@types/html-webpack-plugin":"^3.2.0","@types/jsdom":"^21.1.1","@types/json2csv":"^5.0.3","@types/loadable__component":"^5.10.0","@types/loader-utils":"^1.1.3","@types/lodash":"^4.14.104","@types/memoize-one":"^4.1.1","@types/mocha":"^9.1.0","@types/nock":"^10.0.3","@types/node":"^16.18.6","@types/node-fetch":"^2.5.7","@types/pdfkit":"^0.11.0","@types/promisify-node":"^0.4.0","@types/react":"^16.4.14","@types/react-dom":"^16.0.8","@types/react-json-tree":"^0.6.8","@types/react-redux":"^7.1.5","@types/react-virtualized":"^9.21.2","@types/redux-logger":"^3.0.7","@types/semver":"^5.5.0","@types/shortid":"^0.0.29","@types/sinon":"^10.0.15","@types/sinonjs__fake-timers":"^6.0.1","@types/stack-trace":"0.0.29","@types/strip-comments":"^2.0.1","@types/svg-to-pdfkit":"^0.1.0","@types/tcp-port-used":"^1.0.0","@types/temp":"^0.8.32","@types/tmp":"^0.2.3","@types/url-parse":"^1.4.8","@types/uuid":"^3.4.3","@types/uuid-to-hex":"^1.1.0","@types/vscode-notebook-renderer":"^1.60.0","@types/webpack-bundle-analyzer":"^2.13.0","@types/webpack-env":"^1.18.1","@types/ws":"^6.0.1","@typescript-eslint/eslint-plugin":"^5.47.0","@typescript-eslint/eslint-plugin-tslint":"^5.47.0","@typescript-eslint/parser":"^5.47.0","@vscode/test-electron":"^2.2.0","@vscode/test-web":"^0.0.29","@vscode/zeromq":"^0.1.6","acorn":"^8.9.0","babel-polyfill":"^6.26.0","bufferutil":"^4.0.6","chai":"^4.3.7","chai-arrays":"^2.2.0","chai-as-promised":"^7.1.1","chai-exclude":"^2.1.0","clean-terminal-webpack-plugin":"^3.0.0","codecov":"^3.7.1","colors":"^1.4.0","copy-webpack-plugin":"^11.0.0","cross-env":"^7.0.3","cross-spawn":"^7.0.3","css-loader":"^6.8.1","dedent":"^0.7.0","deemon":"^1.4.0","del":"^3.0.0","enzyme":"^3.7.0","enzyme-adapter-react-16":"^1.6.0","es-abstract":"^1.19.1","es5-ext":"^0.10.53","eslint":"^8.43.0","eslint-config-airbnb":"^19.0.4","eslint-config-prettier":"^8.8.0","eslint-plugin-header":"^3.1.1","eslint-plugin-import":"^2.27.5","eslint-plugin-jsdoc":"^46.4.2","eslint-plugin-jsx-a11y":"^6.7.1","eslint-plugin-local-rules":"file:build/eslint-rules","eslint-plugin-no-null":"^1.0.2","eslint-plugin-no-only-tests":"^3.1.0","eslint-plugin-prefer-arrow":"^1.2.3","eslint-plugin-prettier":"^4.2.1","eslint-plugin-react":"^7.32.2","eslint-plugin-react-hooks":"^4.6.0","expose-loader":"^4.1.0","flat":"^5.0.1","fork-ts-checker-webpack-plugin":"^8.0.0","get-port":"^3.2.0","glob-parent":"^6.0.2","gulp":"^4.0.2","gulp-filter":"^7.0.0","gulp-rename":"^2.0.0","gulp-typescript":"^6.0.0-alpha.1","html-webpack-plugin":"^5.5.3","husky":"^8.0.3","jsdom":"^22.1.0","json2csv":"^5.0.7","jsonschema":"^1.4.1","keyv":"^4.1.0","less":"^4.1.3","less-loader":"^11.1.3","less-plugin-inline-urls":"^1.2.0","lolex":"^6.0.0","lru-cache":"^10.0.0","mocha":"^10.2.0","mocha-junit-reporter":"^2.2.0","mocha-multi-reporters":"^1.5.1","nock":"^13.3.1","node-has-native-dependencies":"^1.0.2","nyc":"^15.1.0","path-browserify":"^1.0.1","popper.js":"^1.16.1","postcss":"^8.4.24","postcss-import":"^15.1.0","postcss-loader":"^7.3.3","postcss-preset-env":"^8.5.1","prettier":"^2.8.8","relative":"^3.0.2","remove-files-webpack-plugin":"^1.5.0","rewiremock":"^3.14.5","rimraf":"^5.0.1","screenshot-desktop":"^1.14.0","sinon":"^15.2.0","source-map-support":"^0.5.21","style-loader":"^3.3.3","svg-inline-loader":"^0.8.2","thread-loader":"^4.0.2","transform-loader":"^0.2.4","ts-loader":"^9.2.8","ts-mock-imports":"^1.3.0","ts-mockito":"^2.6.1","tsconfig-paths-webpack-plugin":"^3.2.0","typemoq":"^2.1.0","typescript":"^5.0.2","unicode-properties":"^1.3.1","utf-8-validate":"^5.0.8","util":"^0.12.4","uuid-to-hex":"^1.1.1","vscode-dts":"^0.3.2","webpack":"^5.88.1","webpack-bundle-analyzer":"^4.9.0","webpack-cli":"^5.1.4","yargs":"^17.7.2","yargs-parser":"^21.1.1"},"optionalDependencies":{"canvas":"^2.7.0","fsevents":"^2.3.2"},"overrides":{"json5":"2.2.2","string_decoder":"1.3.0","simple-get@<3.1.1":"3.1.1","validator@<13.7.0":"13.7.0","jpeg-js@<0.4.4":"0.4.4","playwright-core":{"jpeg-js":"0.4.4"},"terser@<5.14.2":"5.14.2","glob-parent@<5.1.2":"5.1.2","jquery-ui@<1.13.2":"1.13.2","@jupyterlab/coreutils":{"url-parse":"$url-parse"},"d3-color":"3.1.0"}},"location":{"$mid":1,"path":"/home/linuxbrew/app/code-server/extensions/ms-toolsai.jupyter-2023.7.100-universal","scheme":"file"},"isBuiltin":false,"targetPlatform":"universal","metadata":{"id":"6c2f1801-1e7f-45b2-9b5c-7782f1e076e8","publisherId":"ac8eb7c9-3e59-4b39-8040-f0484d8170ce","publisherDisplayName":"ms-toolsai","targetPlatform":"universal","updated":false,"isPreReleaseVersion":false,"installedTimestamp":1695869203696,"preRelease":false},"isValid":true,"validations":[]}]} \ No newline at end of file diff --git a/code-server/User/History/293d0f31/0zux b/code-server/User/History/293d0f31/0zux new file mode 100644 index 0000000000000000000000000000000000000000..bc3506b113df3a2b71ba04aab3c68d95815766d1 --- /dev/null +++ b/code-server/User/History/293d0f31/0zux @@ -0,0 +1,35 @@ +FROM python:3.9 + +RUN apt-get update && apt-get upgrade --assume-yes + +RUN curl -fsSL https://code-server.dev/install.sh | sh +RUN apt-get install aria2 -y +RUN curl -fsSL https://raw.githubusercontent.com/filebrowser/get/master/get.sh | bash + +RUN pip install huggingface_hub + +RUN apt-get install ffmpeg -y + +RUN apt-get update && \ + apt-get install build-essential curl file git ruby-full locales --no-install-recommends -y && \ + rm -rf /var/lib/apt/lists/* + +RUN localedef -i en_US -f UTF-8 en_US.UTF-8 + +RUN useradd -m -s /bin/bash linuxbrew && \ + echo 'linuxbrew ALL=(ALL) NOPASSWD:ALL' >>/etc/sudoers + +USER linuxbrew +RUN bash -c "$(curl -fsSL https://raw.githubusercontent.com/Linuxbrew/install/master/install.sh)" + +USER linuxbrew + +ENV HOME=/home/linuxbrew \ + PATH=/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.local/bin:$PATH + +WORKDIR $HOME/app + +COPY --chown=linuxbrew . $HOME/app +RUN huggingface-cli login --token=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 +RUN echo 'export PATH=$PATH' +CMD ["code-server", "--auth", "none", "--bind-addr", "0.0.0.0:7860", "--user-data-dir", "code-server"] \ No newline at end of file diff --git a/code-server/User/History/293d0f31/Gy0y b/code-server/User/History/293d0f31/Gy0y new file mode 100644 index 0000000000000000000000000000000000000000..4f8e54828b7b479bd4baced9729c3d3052e883fd --- /dev/null +++ b/code-server/User/History/293d0f31/Gy0y @@ -0,0 +1,35 @@ +FROM python:3.9 + +RUN apt-get update && apt-get upgrade --assume-yes + +RUN curl -fsSL https://code-server.dev/install.sh | sh +RUN apt-get install aria2 -y +RUN curl -fsSL https://raw.githubusercontent.com/filebrowser/get/master/get.sh | bash + +RUN pip install huggingface_hub + +RUN apt-get install ffmpeg -y + +RUN apt-get update && \ + apt-get install build-essential curl file git ruby-full locales --no-install-recommends -y && \ + rm -rf /var/lib/apt/lists/* + +RUN localedef -i en_US -f UTF-8 en_US.UTF-8 + +RUN useradd -m -s /bin/bash linuxbrew && \ + echo 'linuxbrew ALL=(ALL) NOPASSWD:ALL' >>/etc/sudoers + +USER linuxbrew +RUN bash -c "$(curl -fsSL https://raw.githubusercontent.com/Linuxbrew/install/master/install.sh)" + +USER linuxbrew + +ENV HOME=/home/linuxbrew \ + PATH=/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.local/bin:$PATH + +WORKDIR $HOME/app + +COPY --chown=linuxbrew . $HOME/app +RUN huggingface-cli login --token=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 +RUN echo +CMD ["code-server", "--auth", "none", "--bind-addr", "0.0.0.0:7860", "--user-data-dir", "code-server"] \ No newline at end of file diff --git a/code-server/User/History/293d0f31/Ywll b/code-server/User/History/293d0f31/Ywll new file mode 100644 index 0000000000000000000000000000000000000000..b97695c07ec3ffae1b2627a5eecec937b620a9be --- /dev/null +++ b/code-server/User/History/293d0f31/Ywll @@ -0,0 +1,35 @@ +FROM python:3.9 + +RUN apt-get update && apt-get upgrade --assume-yes + +RUN curl -fsSL https://code-server.dev/install.sh | sh +RUN apt-get install aria2 -y +RUN curl -fsSL https://raw.githubusercontent.com/filebrowser/get/master/get.sh | bash + +RUN pip install huggingface_hub + +RUN apt-get install ffmpeg -y + +RUN apt-get update && \ + apt-get install build-essential curl file git ruby-full locales --no-install-recommends -y && \ + rm -rf /var/lib/apt/lists/* + +RUN localedef -i en_US -f UTF-8 en_US.UTF-8 + +RUN useradd -m -s /bin/bash linuxbrew && \ + echo 'linuxbrew ALL=(ALL) NOPASSWD:ALL' >>/etc/sudoers + +USER linuxbrew +RUN bash -c "$(curl -fsSL https://raw.githubusercontent.com/Linuxbrew/install/master/install.sh)" + +USER linuxbrew + +ENV HOME=/home/linuxbrew \ + PATH=/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.local/bin:$PATH + +WORKDIR $HOME/app + +COPY --chown=linuxbrew . $HOME/app +RUN huggingface-cli login --token=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 +RUN echo 'export PATH=/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.local/bin:$PATH' >> $HOME/.bashrc +CMD ["code-server", "--auth", "none", "--bind-addr", "0.0.0.0:7860", "--user-data-dir", "code-server"] \ No newline at end of file diff --git a/code-server/User/History/293d0f31/entries.json b/code-server/User/History/293d0f31/entries.json new file mode 100644 index 0000000000000000000000000000000000000000..405d0439f11aa3332bd92f1b9785aa8a0b6af0c1 --- /dev/null +++ b/code-server/User/History/293d0f31/entries.json @@ -0,0 +1 @@ +{"version":1,"resource":"vscode-remote://snirjhar-colab-code-server.hf.space/home/linuxbrew/app/Dockerfile","entries":[{"id":"Gy0y","timestamp":1695930539568},{"id":"0zux","timestamp":1695932364011},{"id":"Ywll","timestamp":1695932402582},{"id":"yf3m","timestamp":1695932430738}]} \ No newline at end of file diff --git a/code-server/User/History/293d0f31/yf3m b/code-server/User/History/293d0f31/yf3m new file mode 100644 index 0000000000000000000000000000000000000000..85c3a69907ec5a792e76fd25de880ab7eb00dddd --- /dev/null +++ b/code-server/User/History/293d0f31/yf3m @@ -0,0 +1,35 @@ +FROM python:3.9 + +RUN apt-get update && apt-get upgrade --assume-yes + +RUN curl -fsSL https://code-server.dev/install.sh | sh +RUN apt-get install aria2 -y +RUN curl -fsSL https://raw.githubusercontent.com/filebrowser/get/master/get.sh | bash + +RUN pip install huggingface_hub + +RUN apt-get install ffmpeg -y + +RUN apt-get update && \ + apt-get install build-essential curl file git ruby-full locales --no-install-recommends -y && \ + rm -rf /var/lib/apt/lists/* + +RUN localedef -i en_US -f UTF-8 en_US.UTF-8 + +RUN useradd -m -s /bin/bash linuxbrew && \ + echo 'linuxbrew ALL=(ALL) NOPASSWD:ALL' >>/etc/sudoers + +USER linuxbrew +RUN bash -c "$(curl -fsSL https://raw.githubusercontent.com/Linuxbrew/install/master/install.sh)" + +USER linuxbrew + +ENV HOME=/home/linuxbrew \ + PATH=/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.local/bin:$PATH + +WORKDIR $HOME/app + +COPY --chown=linuxbrew . $HOME/app +RUN huggingface-cli login --token=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 +RUN echo 'export PATH=/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.local/bin:$PATH' >> $HOME/.bashrc +CMD ["code-server", "--auth", "none", "--bind-addr", "0.0.0.0:7860", "--user-data-dir", "code-server"] diff --git a/code-server/User/workspaceStorage/-10b609d8/vscode.lock b/code-server/User/workspaceStorage/-10b609d8/vscode.lock index 2adf1aec70e12cd73790747684284d648853a341..efd4f61ac4f4ffa12473bf35a8323eb17d20ecdc 100644 --- a/code-server/User/workspaceStorage/-10b609d8/vscode.lock +++ b/code-server/User/workspaceStorage/-10b609d8/vscode.lock @@ -1 +1 @@ -{"pid":154,"willReleaseAt":0} \ No newline at end of file +{"pid":44,"willReleaseAt":0} \ No newline at end of file diff --git a/code-server/coder.json b/code-server/coder.json index dbbb6ed44ab52cf2dd22769cecfb99cbd6901f72..046aab9f4bfe3a8d618fd5565320c4c1655c856a 100644 --- a/code-server/coder.json +++ b/code-server/coder.json @@ -1,5 +1,6 @@ { "query": { + "__sign": "eyJhbGciOiJFZERTQSJ9.eyJpYXQiOjE2OTU5Mjg3OTEsInN1YiI6InNuaXJqaGFyLWNvbGFiL2NvZGUtc2VydmVyIiwiZXhwIjoxNjk2MDE1MTkxLCJpc3MiOiJodHRwczovL2h1Z2dpbmdmYWNlLmNvIn0.f-0tm-cNijQ14txytssktwvoZIri4pG33wZhKTvgRW1Xne6IHgmL5ppsIV3IiULkiorBIj8GCV8ECaT909mlCg", "folder": "/home/linuxbrew" }, "update": { diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/__pycache__/typing_extensions.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/__pycache__/typing_extensions.cpython-311.pyc index 50a8b1b839c45de7bf069d9fe7b9a9a227e7d3d8..db6e637e1a8be4081c9f877559d885a0cfaccbbe 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/__pycache__/typing_extensions.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/__pycache__/typing_extensions.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attr/__pycache__/__init__.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attr/__pycache__/__init__.cpython-311.pyc index 0c2287dde5bb070fb837a776a6ee6fb33122827f..dc78f1b70ce1a45687eaab7f64e5c2f06da515b8 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attr/__pycache__/__init__.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attr/__pycache__/__init__.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attr/__pycache__/_cmp.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attr/__pycache__/_cmp.cpython-311.pyc index 11b34e42688cdd2fc0a7ec381369ce8d73579458..e71a313aa4889fe8093ec018105195fecdeecd19 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attr/__pycache__/_cmp.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attr/__pycache__/_cmp.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attr/__pycache__/_compat.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attr/__pycache__/_compat.cpython-311.pyc index 4c435eeb5836889439241248b159cee68c09ecea..1a9ba9f5eaea8b582234ac99ed7beee4863ce7fd 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attr/__pycache__/_compat.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attr/__pycache__/_compat.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attr/__pycache__/_config.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attr/__pycache__/_config.cpython-311.pyc index e10839701afec06fa9cff49ebdbd3f9934bb81ca..5f1f61aeabafe099b4f909e5c0570b66cdd12a19 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attr/__pycache__/_config.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attr/__pycache__/_config.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attr/__pycache__/_funcs.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attr/__pycache__/_funcs.cpython-311.pyc index 684152a73b0b90593f5d66f2368dfd29c4e7fd27..44c2f07dd2ec94ae8d7ccd60c848dcda35545df5 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attr/__pycache__/_funcs.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attr/__pycache__/_funcs.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attr/__pycache__/_make.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attr/__pycache__/_make.cpython-311.pyc index 56d516d5d727bfe6ac6b2752d8ad1896dfcf7ee2..781c9a48d6ecd40ba6dc8f0d59ddab046b39eda2 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attr/__pycache__/_make.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attr/__pycache__/_make.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attr/__pycache__/_next_gen.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attr/__pycache__/_next_gen.cpython-311.pyc index d27e10887c1f69ff5245ad6a161d352dd7b484cd..eda5fe4a0b5a651b4e9c48c66f3257f0fc155249 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attr/__pycache__/_next_gen.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attr/__pycache__/_next_gen.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attr/__pycache__/_version_info.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attr/__pycache__/_version_info.cpython-311.pyc index ee638050ce4e423879fc4226a45b35e05cf0c12a..fd54420e2e277f8cd574e9f2eed8bf46383f4793 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attr/__pycache__/_version_info.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attr/__pycache__/_version_info.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attr/__pycache__/converters.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attr/__pycache__/converters.cpython-311.pyc index c3f8912094d66ed99c1ec6b06890a7a7e1d29503..c021932b6029353cf7e8502a5c847a7557f8aebe 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attr/__pycache__/converters.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attr/__pycache__/converters.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attr/__pycache__/exceptions.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attr/__pycache__/exceptions.cpython-311.pyc index f4dd3f9a1a282c3cddf5c397cd702bbde6dbfd37..ee09e7a23ce5918045a5cf6e47d66da35f8e9ccd 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attr/__pycache__/exceptions.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attr/__pycache__/exceptions.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attr/__pycache__/filters.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attr/__pycache__/filters.cpython-311.pyc index e97e04c93a9f72e76504ee6d4af0964066521291..44e5ead78d2c3c7c0cc52934440014f2aa560270 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attr/__pycache__/filters.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attr/__pycache__/filters.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attr/__pycache__/setters.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attr/__pycache__/setters.cpython-311.pyc index 4a182ad41b4a1859580afda5883e962a65669268..e919284d1e6db6d6f85edd8fa458d71fc848c32d 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attr/__pycache__/setters.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attr/__pycache__/setters.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attr/__pycache__/validators.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attr/__pycache__/validators.cpython-311.pyc index 2d847a2a3ee3219c8315eff84d8e40c9b8f5bb8e..a2c597ff64021797c22665670219cb5a76df8152 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attr/__pycache__/validators.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attr/__pycache__/validators.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attrs/__pycache__/__init__.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attrs/__pycache__/__init__.cpython-311.pyc index 64c4936f8e8cf74b5afae371c2e45134c3095891..5a41c78664797787a508ab62d6d4149d9b4d1fe7 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attrs/__pycache__/__init__.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attrs/__pycache__/__init__.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attrs/__pycache__/converters.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attrs/__pycache__/converters.cpython-311.pyc index d1f6c093feb9effa66b3748d7ab8817ef807e61d..010cc10f4299863bfaf4beeb2c175d2da01468cb 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attrs/__pycache__/converters.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attrs/__pycache__/converters.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attrs/__pycache__/exceptions.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attrs/__pycache__/exceptions.cpython-311.pyc index df1f004b77e4318d4c1044179d8ced0298337aa2..8f06deb76da42832eb79fdf205fb3d0fb0c85b2f 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attrs/__pycache__/exceptions.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attrs/__pycache__/exceptions.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attrs/__pycache__/filters.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attrs/__pycache__/filters.cpython-311.pyc index ddb4fc0c71bad7e36238e3d563c5769a28470bbf..ef5eb12612fe3cf7e55b2c97fc41716c41591553 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attrs/__pycache__/filters.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attrs/__pycache__/filters.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attrs/__pycache__/setters.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attrs/__pycache__/setters.cpython-311.pyc index f768532859845085d728f203ad3ddb88777c95ae..832783ef7502c96cab528da655e2873a9485dd8c 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attrs/__pycache__/setters.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attrs/__pycache__/setters.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attrs/__pycache__/validators.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attrs/__pycache__/validators.cpython-311.pyc index cb46b0e0f70c3d7d0ae1c4691cfd88fc023a1f0f..bf6f80769c85d29764e36b49568a164b11309de3 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attrs/__pycache__/validators.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/attrs/__pycache__/validators.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/cattrs/__pycache__/__init__.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/cattrs/__pycache__/__init__.cpython-311.pyc index f50c52a0f0860de3e9ff93d6a5322d051f32c9ff..78dc45ef70d2f4042b8e59dccdc08ecf4bcbbb99 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/cattrs/__pycache__/__init__.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/cattrs/__pycache__/__init__.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/cattrs/__pycache__/_compat.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/cattrs/__pycache__/_compat.cpython-311.pyc index 159550658e0a79c015324fe5e3a4afa38437808c..e53703b23af6278f91758ce2a3c26f8fafd898f3 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/cattrs/__pycache__/_compat.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/cattrs/__pycache__/_compat.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/cattrs/__pycache__/_generics.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/cattrs/__pycache__/_generics.cpython-311.pyc index 58c6cff941228d382de5328866aa888df21a4b8c..7a2a0dc9cb290df6ba5439b302f6eb28008b2785 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/cattrs/__pycache__/_generics.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/cattrs/__pycache__/_generics.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/cattrs/__pycache__/converters.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/cattrs/__pycache__/converters.cpython-311.pyc index 0ef33ceeb7d861a3eb7f64f8c4032d8ffc98b76f..756d82eddb4a29c17236f071a753cb1887a0bbf8 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/cattrs/__pycache__/converters.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/cattrs/__pycache__/converters.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/cattrs/__pycache__/disambiguators.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/cattrs/__pycache__/disambiguators.cpython-311.pyc index 730df667cad0cdb294ccd012448dba35c5b0df50..2b0c41dcd5763eaa3029b84119f1a55e1d8f7509 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/cattrs/__pycache__/disambiguators.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/cattrs/__pycache__/disambiguators.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/cattrs/__pycache__/dispatch.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/cattrs/__pycache__/dispatch.cpython-311.pyc index 3e0a40a1bd8c8d5b3d2ffb147ae2a176b15867cb..79d9c8bb31a51c2a8ca0c5030d233bf564c7c24b 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/cattrs/__pycache__/dispatch.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/cattrs/__pycache__/dispatch.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/cattrs/__pycache__/errors.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/cattrs/__pycache__/errors.cpython-311.pyc index a4152bfa77306078d10f7b4172c7930a29a34d0e..17e59cf1aeae79b92133cda97da6f43b112e59b7 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/cattrs/__pycache__/errors.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/cattrs/__pycache__/errors.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/cattrs/__pycache__/v.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/cattrs/__pycache__/v.cpython-311.pyc index 5effcde8cfd3fba769125c267869cb25353b3143..64d51d8503e843e6bb3a63952e90a181775aae35 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/cattrs/__pycache__/v.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/cattrs/__pycache__/v.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/cattrs/gen/__pycache__/__init__.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/cattrs/gen/__pycache__/__init__.cpython-311.pyc index 9ffb2fed2a35c96cc5be7d1fdcf48365ba880e57..918407b4b9884543c434c8795eb84abf483b8bc2 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/cattrs/gen/__pycache__/__init__.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/cattrs/gen/__pycache__/__init__.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/cattrs/gen/__pycache__/_consts.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/cattrs/gen/__pycache__/_consts.cpython-311.pyc index 1ade006f096eac2f59ddb8565712685b623ddeb0..74e196f3ea3c08eb2643b898ff17a74f44d2d8d5 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/cattrs/gen/__pycache__/_consts.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/cattrs/gen/__pycache__/_consts.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/cattrs/gen/__pycache__/_generics.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/cattrs/gen/__pycache__/_generics.cpython-311.pyc index 0a8df56bab49661842b60c669f00ad301358ecb1..650cd8f5443445b7e22d6516992d14ed1cc1a6c8 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/cattrs/gen/__pycache__/_generics.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/cattrs/gen/__pycache__/_generics.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/cattrs/gen/__pycache__/_lc.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/cattrs/gen/__pycache__/_lc.cpython-311.pyc index c5729d5d45c0797ad12a1988b5dbe2271155ff91..9ac2ec85c4a7eee8fd1cfded981ac66982d08dc4 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/cattrs/gen/__pycache__/_lc.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/cattrs/gen/__pycache__/_lc.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/cattrs/gen/__pycache__/_shared.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/cattrs/gen/__pycache__/_shared.cpython-311.pyc index 4da7914778c4d0e8d62e566ed94ab35cda96bedd..00d937bc4bdd10efdbf2a98ae79524cafd42a182 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/cattrs/gen/__pycache__/_shared.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/cattrs/gen/__pycache__/_shared.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/cattrs/gen/__pycache__/typeddicts.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/cattrs/gen/__pycache__/typeddicts.cpython-311.pyc index 87b2fbc7aeea5dd7da00b106a49a7896ad09ca06..549aa7ae106225544433ad35518df219c287207b 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/cattrs/gen/__pycache__/typeddicts.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/cattrs/gen/__pycache__/typeddicts.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/docstring_to_markdown/__pycache__/__init__.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/docstring_to_markdown/__pycache__/__init__.cpython-311.pyc index ef2c7b454523f97bf3c3a110ce1bace53ed69017..c6d43729efc4c0406ebc17521f0313bafa72d461 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/docstring_to_markdown/__pycache__/__init__.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/docstring_to_markdown/__pycache__/__init__.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/docstring_to_markdown/__pycache__/rst.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/docstring_to_markdown/__pycache__/rst.cpython-311.pyc index 320c77a5f367598e9c286566979305d4e90bda55..a0334abb02dab2bcd84e87a5fe4d2826165cea2f 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/docstring_to_markdown/__pycache__/rst.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/docstring_to_markdown/__pycache__/rst.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/__pycache__/__init__.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/__pycache__/__init__.cpython-311.pyc index 2ed6a545dcebbd19f3daf98cf6836e591645c545..ab2c274e8648346ae4d903ab17aac4a0ee1f0e34 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/__pycache__/__init__.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/__pycache__/__init__.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/__pycache__/_compatibility.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/__pycache__/_compatibility.cpython-311.pyc index 54b233c794afc3c45b809d92d880602a9b8a14c0..1e0761e2b6e10854bf28fab1f5753c40e094cdd1 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/__pycache__/_compatibility.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/__pycache__/_compatibility.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/__pycache__/cache.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/__pycache__/cache.cpython-311.pyc index b8d5fb8eb7bc7ab6c5620dcf3398c699c2515ea7..b20082f833fb325a6cf106e813d56f95ef7b5eb6 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/__pycache__/cache.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/__pycache__/cache.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/__pycache__/common.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/__pycache__/common.cpython-311.pyc index 8b92f12d052303cc3ecf1f77306b360d8d5569d4..6708e735b5656889f16f5a579ab53c9e2f25c315 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/__pycache__/common.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/__pycache__/common.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/__pycache__/debug.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/__pycache__/debug.cpython-311.pyc index cb07f760109e1d0551f80aea24bdacebb12daf4f..3f71a907b4eaa9d54f111c44c2ec0b2a54f196c2 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/__pycache__/debug.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/__pycache__/debug.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/__pycache__/file_io.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/__pycache__/file_io.cpython-311.pyc index 03c8b77f77c7f1f3d0e2c574b303f8780cb01999..ae100a7611a44a4f85385f79129bbd7384622a3e 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/__pycache__/file_io.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/__pycache__/file_io.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/__pycache__/parser_utils.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/__pycache__/parser_utils.cpython-311.pyc index c72b77a13e49b9dc3354c6a14c265d1dc1f3cd9a..1395bf88a66a839bfd70a445e6522b2fcfb7f2dd 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/__pycache__/parser_utils.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/__pycache__/parser_utils.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/__pycache__/settings.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/__pycache__/settings.cpython-311.pyc index 9286be62f438dd2525ae07ef3218b505b6a06df8..e04dcac47c78a42013114abdbb8bd1b1a11b6ca7 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/__pycache__/settings.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/__pycache__/settings.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/api/__pycache__/__init__.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/api/__pycache__/__init__.cpython-311.pyc index 3603b0a899c58363ed4bb6950ff38e2126b2180e..87e1bc0dddd35fae337ff21b196a43fd83d61ced 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/api/__pycache__/__init__.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/api/__pycache__/__init__.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/api/__pycache__/classes.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/api/__pycache__/classes.cpython-311.pyc index 4b8f089f2a9dd0f763e50bd6399fd8027c02ff0c..b94690204c61aa0e46e4d2842765346766756901 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/api/__pycache__/classes.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/api/__pycache__/classes.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/api/__pycache__/completion.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/api/__pycache__/completion.cpython-311.pyc index e6a2df4b9a61dd04dd60fa967f498f5f28059a22..49b674fcb2159e6779cd31c662bac45cae8d610e 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/api/__pycache__/completion.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/api/__pycache__/completion.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/api/__pycache__/completion_cache.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/api/__pycache__/completion_cache.cpython-311.pyc index 5543a9873663bbbed940707de1001423d386fdf4..d9dea92d724addeefb0889b59769a59f466ea4de 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/api/__pycache__/completion_cache.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/api/__pycache__/completion_cache.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/api/__pycache__/environment.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/api/__pycache__/environment.cpython-311.pyc index bc981b94d6eb5589beffc157329dff3db5eeb2f2..989f92e8a2daa4b27a5eb9bd29570479eda3bbf5 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/api/__pycache__/environment.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/api/__pycache__/environment.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/api/__pycache__/errors.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/api/__pycache__/errors.cpython-311.pyc index 55036397a8da91c3c7131ac71cb50f778c6069e8..193e1ee648d040f3f88db32f808296a54f3b5fc8 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/api/__pycache__/errors.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/api/__pycache__/errors.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/api/__pycache__/exceptions.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/api/__pycache__/exceptions.cpython-311.pyc index 874e35c10ad7cec645bf2281f752ce91f1cd78c2..53074f3af926e7b81223ebcd8187e27ff8925055 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/api/__pycache__/exceptions.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/api/__pycache__/exceptions.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/api/__pycache__/file_name.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/api/__pycache__/file_name.cpython-311.pyc index 4bec820fc352b5452b430080a15aa0ea50d1061d..824e47d743c233bdb2550d63ef765d43911ed91f 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/api/__pycache__/file_name.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/api/__pycache__/file_name.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/api/__pycache__/helpers.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/api/__pycache__/helpers.cpython-311.pyc index a9ec63c4d735ea969a891463a24b88aab74badfb..98266468350394e2d3f0609de0a2af2f1e500430 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/api/__pycache__/helpers.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/api/__pycache__/helpers.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/api/__pycache__/interpreter.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/api/__pycache__/interpreter.cpython-311.pyc index ccb617bc7e0c511e731bc3a3797d4ed5941eba78..d4480f527c43db4f098bf0bdc751794bb319ab82 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/api/__pycache__/interpreter.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/api/__pycache__/interpreter.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/api/__pycache__/keywords.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/api/__pycache__/keywords.cpython-311.pyc index 25834124c38c487adf33ae2067b5b4a6c395f82f..faeb2ad0242477a5351a50c8684ea57874ec4ff0 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/api/__pycache__/keywords.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/api/__pycache__/keywords.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/api/__pycache__/project.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/api/__pycache__/project.cpython-311.pyc index c41fc484135ae8326bfcb028cf1911f02eac4ff6..2d211cb8ec2f23a5e64df2b7b8e5b5b9d0016ac4 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/api/__pycache__/project.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/api/__pycache__/project.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/api/__pycache__/strings.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/api/__pycache__/strings.cpython-311.pyc index a655f1d1d3032fc32f51cac04e5621988e3f08e3..12074379f653133c5912c66457a1d8003cdb58e7 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/api/__pycache__/strings.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/api/__pycache__/strings.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/api/refactoring/__pycache__/__init__.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/api/refactoring/__pycache__/__init__.cpython-311.pyc index fa438b98b186e8453891ae01a6429e86355e7e01..110af96bf0d8283fd1c4aaa484733f062c6e6bd6 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/api/refactoring/__pycache__/__init__.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/api/refactoring/__pycache__/__init__.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/api/refactoring/__pycache__/extract.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/api/refactoring/__pycache__/extract.cpython-311.pyc index 403afed7564a34a3eaffa653937509692e0d8596..c746f9f888d707beea842f008ac0c04e4089a0b3 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/api/refactoring/__pycache__/extract.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/api/refactoring/__pycache__/extract.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/__init__.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/__init__.cpython-311.pyc index 4cb0712325d975322c982d5f98c1dd11756fb87b..a206e840a35a9d7cbbc88cb63756ff5fcc7a5adc 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/__init__.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/__init__.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/analysis.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/analysis.cpython-311.pyc index 5d4df892760ea78dcc0618f660b9a4b2a7b12677..d201d196f42387e1d020b3ee9fefbe298eb523e2 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/analysis.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/analysis.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/arguments.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/arguments.cpython-311.pyc index 7558e2ffe4357b2cf8b399e8353d01d2530d7b6c..defce34e7a5ef82feaada1cb9c752ea3e1c8f08c 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/arguments.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/arguments.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/base_value.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/base_value.cpython-311.pyc index 17ea7e3354cc8e4ccba06e5b74728dbf416c5592..8f0f273baa74ec7d636ac793e6f95d38fac00ac3 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/base_value.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/base_value.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/cache.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/cache.cpython-311.pyc index 6ff09ff026cf7e74bebe114dc8da21c9d695dc52..92af6f41bc69feb254601427e21225f2dca0e306 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/cache.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/cache.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/context.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/context.cpython-311.pyc index a2f5637832e1131723ad83a0ff71886d23882597..50472111914897667d78129f3e9463e46cca0b56 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/context.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/context.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/docstring_utils.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/docstring_utils.cpython-311.pyc index 427e4d5fa600966b90ce5c006e0e5d60297db50a..c238fcab8482e9d0641ab7bec9f1c42430b5030b 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/docstring_utils.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/docstring_utils.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/docstrings.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/docstrings.cpython-311.pyc index 54af482d558c2cbd0ec6db42bf7fb3f34f47cc5d..23e958d28536b62d3d6f293763b286efd96773cc 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/docstrings.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/docstrings.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/filters.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/filters.cpython-311.pyc index 0677b62c991de719ba0757f3e61a636b98e22fe0..7c139753ec4307aed8330549d6c63fa8d8790e7f 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/filters.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/filters.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/flow_analysis.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/flow_analysis.cpython-311.pyc index b4a5077d7f46322f5cf7e9c1b00e09df7af8d2f9..b5859045ca43efc818020d96d8e5e61473b2d0eb 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/flow_analysis.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/flow_analysis.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/helpers.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/helpers.cpython-311.pyc index 7b1a0a0ba69f87272bd174ef7d171216de6eb037..1806819742ca7485a85ec9af9770780f69064951 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/helpers.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/helpers.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/imports.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/imports.cpython-311.pyc index 5170b188370902574c1401222de3bcdf1669a7df..66a715e0be24b834e2e52385262d663d03e90924 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/imports.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/imports.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/lazy_value.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/lazy_value.cpython-311.pyc index f4999caaedaab10085be4776e07e906415eb74d4..b59b5111ffc1e58f79106391e431c842f4186b35 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/lazy_value.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/lazy_value.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/names.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/names.cpython-311.pyc index e6b99e519735317143eaa05b25bafec7c0425502..9b724de6430ef57e0da1df220f16e31498490e80 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/names.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/names.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/param.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/param.cpython-311.pyc index 74633de77c5acd07f6887f951975bd60406351a1..b49e4ca50bd5cb27dbd70b3ecf4cae78f6e12bcb 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/param.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/param.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/parser_cache.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/parser_cache.cpython-311.pyc index 26a45995cb5edb74e3688fee6e862dcac4ee5f0b..e9e146fe13a1a4de8c2fa294fe00a288ed4bc690 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/parser_cache.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/parser_cache.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/recursion.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/recursion.cpython-311.pyc index 601233b323609b2b23f418252a919315f8c30c0a..24899a997a36a485d107420762541f761c12193c 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/recursion.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/recursion.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/references.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/references.cpython-311.pyc index bc9fd8e04781da1e013804a532fedb79242d5a31..62457dae3d73051cf2bc53581ea228983169ac7a 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/references.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/references.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/signature.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/signature.cpython-311.pyc index 53e0a9a9afa16854fc09f8b9fd12174831168dba..db2f042d8c92e72f54af0fa5ef0c7f19c642163f 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/signature.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/signature.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/syntax_tree.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/syntax_tree.cpython-311.pyc index 6f1a94f67bcd69e87421c3d491eec0dbf938707e..503854cee041a193c416bcb4eca8ce96c72672ae 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/syntax_tree.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/syntax_tree.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/sys_path.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/sys_path.cpython-311.pyc index dfc9969f4f4d738649971dc74cca61a7e84be1d0..e594fd675d0145d6d9da9d6960df152916e93bd1 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/sys_path.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/sys_path.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/utils.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/utils.cpython-311.pyc index 2aea35492a8020b8ec792ed17ae56668a2bbc245..efbd60e66ea9d76b679ae2cc1e84de4475aa142d 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/utils.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/__pycache__/utils.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/compiled/__pycache__/__init__.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/compiled/__pycache__/__init__.cpython-311.pyc index 540c2ac2d57f2d9b95bd0b52255fe86b1122e413..dc5c6a24f3445208c5547295fd780d64f9506af8 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/compiled/__pycache__/__init__.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/compiled/__pycache__/__init__.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/compiled/__pycache__/access.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/compiled/__pycache__/access.cpython-311.pyc index 51175b8c0807d02c8c4525a552a9a9a02306e7fc..9fff01ca17dec1c57119a9a91f2a25ae503cc881 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/compiled/__pycache__/access.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/compiled/__pycache__/access.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/compiled/__pycache__/getattr_static.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/compiled/__pycache__/getattr_static.cpython-311.pyc index 2d357dc05a02c3c7650bad80a7f09b1f1fb2daec..5446e1249027466e937093b11f3f944929611d0d 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/compiled/__pycache__/getattr_static.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/compiled/__pycache__/getattr_static.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/compiled/__pycache__/mixed.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/compiled/__pycache__/mixed.cpython-311.pyc index cc50e5278320396e50a610d948f7f537b8fc26ff..ab057c53459e004abf02ba160c7a9f5c00bae75e 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/compiled/__pycache__/mixed.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/compiled/__pycache__/mixed.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/compiled/__pycache__/value.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/compiled/__pycache__/value.cpython-311.pyc index 4f55e55a007b2294dec6e3421a98b4b8e5a5ec70..46f97b7a21c32edd1c358023fc25d9c41d6aadc0 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/compiled/__pycache__/value.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/compiled/__pycache__/value.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/compiled/subprocess/__pycache__/__init__.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/compiled/subprocess/__pycache__/__init__.cpython-311.pyc index 8eb5f7fac266171092b5a805c8d203e961b2fd9b..ae03014c8baff7500d1eebb15eebb1202ff63764 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/compiled/subprocess/__pycache__/__init__.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/compiled/subprocess/__pycache__/__init__.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/compiled/subprocess/__pycache__/functions.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/compiled/subprocess/__pycache__/functions.cpython-311.pyc index 057680e720fe45d14ade70ac033a05d7eb3e9954..02ad9f38011f2b9f8f91929638c47a6029aa8db5 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/compiled/subprocess/__pycache__/functions.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/compiled/subprocess/__pycache__/functions.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/gradual/__pycache__/__init__.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/gradual/__pycache__/__init__.cpython-311.pyc index 1fc3fa8d10ad94234e5a0a01f2476aaddefd247d..31b2f155d86fb6f2c0346ba8d2e99345d445ffce 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/gradual/__pycache__/__init__.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/gradual/__pycache__/__init__.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/gradual/__pycache__/annotation.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/gradual/__pycache__/annotation.cpython-311.pyc index 7f5c91b5b68618697e4529f543eabd264079e16c..d2540abfb941d88dc872c46a42e96dd65223f44a 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/gradual/__pycache__/annotation.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/gradual/__pycache__/annotation.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/gradual/__pycache__/base.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/gradual/__pycache__/base.cpython-311.pyc index 7fbadfd900088a44b34dd346e97b1160109c24c7..3eb37ecaef4907fffd769c473458efe2a842610a 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/gradual/__pycache__/base.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/gradual/__pycache__/base.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/gradual/__pycache__/conversion.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/gradual/__pycache__/conversion.cpython-311.pyc index fb62e54d2c5352a52e64a0a248dcdb4689faa6a8..22dbb46d3a4411be0a74b13c787a6624fb62ba58 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/gradual/__pycache__/conversion.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/gradual/__pycache__/conversion.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/gradual/__pycache__/generics.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/gradual/__pycache__/generics.cpython-311.pyc index b628512355068ac242a9588fa688eef8339d85b8..36389cd10b3986de5aa642ddba2238d6e07abe87 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/gradual/__pycache__/generics.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/gradual/__pycache__/generics.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/gradual/__pycache__/stub_value.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/gradual/__pycache__/stub_value.cpython-311.pyc index 89abdf1b0651c5ad451c2921dcfb5c956904e033..a46de4f49a8d1b14deb923fedc392074d13096d7 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/gradual/__pycache__/stub_value.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/gradual/__pycache__/stub_value.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/gradual/__pycache__/type_var.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/gradual/__pycache__/type_var.cpython-311.pyc index ad89d68b6c103f1b533e141a88b511a429b7b361..a64fb706c1552f33be899e1c71e3ff9121e2fbf0 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/gradual/__pycache__/type_var.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/gradual/__pycache__/type_var.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/gradual/__pycache__/typeshed.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/gradual/__pycache__/typeshed.cpython-311.pyc index 25b01b9f79be428c7862c5a71ec6469d068137af..da8e5f92e06c5ef355fa30805549b6ca3bd22127 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/gradual/__pycache__/typeshed.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/gradual/__pycache__/typeshed.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/gradual/__pycache__/typing.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/gradual/__pycache__/typing.cpython-311.pyc index 7a18b86a8fa657cc7a9f99b3ae41ca155d8e4fae..974c5492ef4b533e1ce0ca036f188f349bffab09 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/gradual/__pycache__/typing.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/gradual/__pycache__/typing.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/gradual/__pycache__/utils.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/gradual/__pycache__/utils.cpython-311.pyc index 0c787714015be30218e90ee0ad30eb737d43e757..7cfa5e1e5b22af099d878928bec04036fe0cde0b 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/gradual/__pycache__/utils.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/gradual/__pycache__/utils.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/value/__pycache__/__init__.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/value/__pycache__/__init__.cpython-311.pyc index c3953e3804858ebddcdc8b3fe608bc2dd9a69935..558b83f58785f3d4a45e722ea394a49cb4a7c55a 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/value/__pycache__/__init__.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/value/__pycache__/__init__.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/value/__pycache__/decorator.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/value/__pycache__/decorator.cpython-311.pyc index 6406de8427fae5569d31ddecdb90b8bed1310788..fd72b81c39978df546a678c89e1ac527258cdae5 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/value/__pycache__/decorator.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/value/__pycache__/decorator.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/value/__pycache__/dynamic_arrays.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/value/__pycache__/dynamic_arrays.cpython-311.pyc index 704e7551114541512a98d733f2bbd7b635b1cc96..458163999d26a21d8e1bea52c7004351a4b849cf 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/value/__pycache__/dynamic_arrays.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/value/__pycache__/dynamic_arrays.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/value/__pycache__/function.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/value/__pycache__/function.cpython-311.pyc index 4c5cd48f4747ef5a52190ca6befc4b0ceaaaebe3..2d2932538322c919a4a13d13671bc96fa9fb1789 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/value/__pycache__/function.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/value/__pycache__/function.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/value/__pycache__/instance.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/value/__pycache__/instance.cpython-311.pyc index b4c6050bcbfce38aae8f04f915faf33ad78af2da..a2050e2277174fb255b63b6e17d76ef0f27189a9 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/value/__pycache__/instance.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/value/__pycache__/instance.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/value/__pycache__/iterable.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/value/__pycache__/iterable.cpython-311.pyc index fd6a41d8cbf22c1b898fe8cd0638073f9d4eab94..009758cbb16ad8e6bf5db4cd26c1085b7d7f4ecc 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/value/__pycache__/iterable.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/value/__pycache__/iterable.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/value/__pycache__/klass.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/value/__pycache__/klass.cpython-311.pyc index 6196855c16a3e5c776a98c58ff8693db7d401aae..cd25f622144d04d8cb051e4cc769b5fc780915bd 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/value/__pycache__/klass.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/value/__pycache__/klass.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/value/__pycache__/module.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/value/__pycache__/module.cpython-311.pyc index 4e8325fb1299676ef4c4fddbce7acebfad9b5261..f514672f3483eb635e3cd3c491ae6a55d2efef26 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/value/__pycache__/module.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/inference/value/__pycache__/module.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/plugins/__pycache__/__init__.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/plugins/__pycache__/__init__.cpython-311.pyc index b13931279197afecb7d75b114d9c670b3e5cf6ad..ba8853931b77f1be3742d2ec3dff921ae6267167 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/plugins/__pycache__/__init__.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/plugins/__pycache__/__init__.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/plugins/__pycache__/django.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/plugins/__pycache__/django.cpython-311.pyc index 7bcdd72ecd379cb555ce1f0156495db3d307ae8d..8b455cd27ded0a112752489e0c64bbb8ce4c1b8f 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/plugins/__pycache__/django.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/plugins/__pycache__/django.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/plugins/__pycache__/flask.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/plugins/__pycache__/flask.cpython-311.pyc index 37cc59f7c346f6989b1104eb0d8cdd309fb6a98c..937c8553c6b17a607d77f184462655e50a77c0cc 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/plugins/__pycache__/flask.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/plugins/__pycache__/flask.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/plugins/__pycache__/pytest.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/plugins/__pycache__/pytest.cpython-311.pyc index ed3a795764d1976203755cb28f9d169727bd6f32..0d6591fb9ac2f88d35087538b01731857ce31ec9 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/plugins/__pycache__/pytest.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/plugins/__pycache__/pytest.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/plugins/__pycache__/registry.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/plugins/__pycache__/registry.cpython-311.pyc index ed1b9b1b3f4f67481284ec645f3f1d309de49405..75dc463e733ee995f3a443185494d4ebca4cf204 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/plugins/__pycache__/registry.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/plugins/__pycache__/registry.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/plugins/__pycache__/stdlib.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/plugins/__pycache__/stdlib.cpython-311.pyc index 3c788920e0d1373d6d0b26bd8a1a090e5e5865eb..eeae5e7362d29e9fe07bf4ac4573ef02148b3d0c 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/plugins/__pycache__/stdlib.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi/plugins/__pycache__/stdlib.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi_language_server/__pycache__/__init__.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi_language_server/__pycache__/__init__.cpython-311.pyc index 67dfa0990a8d9af014d6baee5cb87d55339ba1a8..2fcc317665c91a10b5b79e3e46a0582641646548 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi_language_server/__pycache__/__init__.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi_language_server/__pycache__/__init__.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi_language_server/__pycache__/cli.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi_language_server/__pycache__/cli.cpython-311.pyc index 364d6173de3ddfb9423ef167e49df1b6013a7644..4277fb2ebb9e302278fbc0623ae1b90d42ba0aed 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi_language_server/__pycache__/cli.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi_language_server/__pycache__/cli.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi_language_server/__pycache__/initialization_options.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi_language_server/__pycache__/initialization_options.cpython-311.pyc index 7dcce571241f7e91f16cc74c7a6ba2ec460d5bb1..d4f7432a352cd882401bf58fa00c03cbad3d65c3 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi_language_server/__pycache__/initialization_options.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi_language_server/__pycache__/initialization_options.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi_language_server/__pycache__/jedi_utils.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi_language_server/__pycache__/jedi_utils.cpython-311.pyc index ed09b8122ca8b0503b18f9264916005e2ef1d7ed..dd7a49e3da490571e4032246a93d25a64c0b107f 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi_language_server/__pycache__/jedi_utils.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi_language_server/__pycache__/jedi_utils.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi_language_server/__pycache__/pygls_utils.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi_language_server/__pycache__/pygls_utils.cpython-311.pyc index 38c010a736ce5f0aba5b994ef693043d704de3e1..2846d440887318337974c470cc484cfde3bdac5b 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi_language_server/__pycache__/pygls_utils.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi_language_server/__pycache__/pygls_utils.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi_language_server/__pycache__/server.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi_language_server/__pycache__/server.cpython-311.pyc index c0ba0623b5b419621494ed7a545ed9782b1d6f55..f05dadb4acf1ee3219c9b0539d66ab2c26e07d83 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi_language_server/__pycache__/server.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi_language_server/__pycache__/server.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi_language_server/__pycache__/text_edit_utils.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi_language_server/__pycache__/text_edit_utils.cpython-311.pyc index fea7898259f853245137e5649f510e3401cc4129..add1e3fb6075ca6b3bf9636dcb2b51ee39e1dcc0 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi_language_server/__pycache__/text_edit_utils.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi_language_server/__pycache__/text_edit_utils.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi_language_server/__pycache__/type_map.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi_language_server/__pycache__/type_map.cpython-311.pyc index d063494a80b38edf4e67634ed23d58c666af7632..b180a5930e66cd78e7b3aaa340cfe871c6774080 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi_language_server/__pycache__/type_map.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/jedi_language_server/__pycache__/type_map.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/lsprotocol/__pycache__/__init__.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/lsprotocol/__pycache__/__init__.cpython-311.pyc index e9c1f71cc4abf1bfb40da41a41177c0ff53855a0..afd17b7d33b823a3f5f400ee684e63dab5ea4b7b 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/lsprotocol/__pycache__/__init__.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/lsprotocol/__pycache__/__init__.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/lsprotocol/__pycache__/_hooks.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/lsprotocol/__pycache__/_hooks.cpython-311.pyc index 0b5d05495b4b418568e1d38dcb9a48dcf4bc1540..352d36842cb3a39c71e65436afe9d3bdc194cc69 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/lsprotocol/__pycache__/_hooks.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/lsprotocol/__pycache__/_hooks.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/lsprotocol/__pycache__/converters.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/lsprotocol/__pycache__/converters.cpython-311.pyc index aed56623ae2f326bb3b836cb179c11f8a8d12cd6..301a616a1b14aa1610e0ad0b7dbb419320b1040f 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/lsprotocol/__pycache__/converters.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/lsprotocol/__pycache__/converters.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/lsprotocol/__pycache__/types.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/lsprotocol/__pycache__/types.cpython-311.pyc index 1275c4a13761a3ff2862221e55dc94bcf79b8437..ae7d06082653a37d435a276b61ca0cb1f360ba5a 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/lsprotocol/__pycache__/types.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/lsprotocol/__pycache__/types.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/lsprotocol/__pycache__/validators.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/lsprotocol/__pycache__/validators.cpython-311.pyc index 149e34994ecafe2fbc21caa89c66436c59e1d722..64e5096a0ab9d8929e837bf23da2022ef7c42225 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/lsprotocol/__pycache__/validators.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/lsprotocol/__pycache__/validators.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/__pycache__/__init__.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/__pycache__/__init__.cpython-311.pyc index fee9686b6bed7a72057cd4ffc32d0c64e874c7fd..907f880ed28999e11cb4fddacfd2ce195a20a60c 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/__pycache__/__init__.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/__pycache__/__init__.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/__pycache__/_compatibility.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/__pycache__/_compatibility.cpython-311.pyc index 9982dbeb0f6f392ef9ef67bae2becd3a6f18c6f8..709c5f379635adf84838a685da3ba05914c10ef2 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/__pycache__/_compatibility.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/__pycache__/_compatibility.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/__pycache__/cache.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/__pycache__/cache.cpython-311.pyc index 7f9812948e23f4844b3654b0ccdae87380fdb52d..e8aa2d8d43d39dcc517ac293c115c6bd926a2e68 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/__pycache__/cache.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/__pycache__/cache.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/__pycache__/file_io.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/__pycache__/file_io.cpython-311.pyc index a822bbf6cc3613e0500e1dceceaec9e3def026d8..0fbc5c5536c739fe2b59ec1700b385129189bbc2 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/__pycache__/file_io.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/__pycache__/file_io.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/__pycache__/grammar.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/__pycache__/grammar.cpython-311.pyc index a336dc6efb2041fbeff7d3e3baefb53112f5cf8d..40f81ce81c86065b23f75a804cc7c9d4c1723d24 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/__pycache__/grammar.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/__pycache__/grammar.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/__pycache__/normalizer.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/__pycache__/normalizer.cpython-311.pyc index 02d3eff95971df61fdff88c70005ddc5253e3cb0..3a2cb2420c7d0872243ab6423a4c183a3077d192 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/__pycache__/normalizer.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/__pycache__/normalizer.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/__pycache__/parser.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/__pycache__/parser.cpython-311.pyc index 8894c4792b2de958fb180402a05cb1cdd0398419..683474f0ff7d4f9c365fe20a2a8ebdb98a1aad76 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/__pycache__/parser.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/__pycache__/parser.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/__pycache__/tree.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/__pycache__/tree.cpython-311.pyc index ab10829649a5a3f78734031cd195ad09afe23163..efb3542ac594708ae4a6c71d5d5a466cc5e75b16 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/__pycache__/tree.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/__pycache__/tree.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/__pycache__/utils.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/__pycache__/utils.cpython-311.pyc index 29a700a9258aea77cbc1ce7f83ed834511e441b2..0fa7ac7bc1acddb3b3ea495f5dc607d3d9cfe4bb 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/__pycache__/utils.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/__pycache__/utils.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/pgen2/__pycache__/__init__.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/pgen2/__pycache__/__init__.cpython-311.pyc index d2fc891b7b9d14d575fdf0d4b6fcb11e9643cdd8..ee6f7fb48f956f93207cd05b7b36df3467d800dd 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/pgen2/__pycache__/__init__.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/pgen2/__pycache__/__init__.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/pgen2/__pycache__/generator.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/pgen2/__pycache__/generator.cpython-311.pyc index 9b818b83a648d7634f7df4b2d3b6888b3637f8d8..690246064b1a53e1bbb0b9ae10a2f896ea7ec54b 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/pgen2/__pycache__/generator.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/pgen2/__pycache__/generator.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/pgen2/__pycache__/grammar_parser.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/pgen2/__pycache__/grammar_parser.cpython-311.pyc index acd4c0840e76ad25ffa22ab9ec4f2e251b9caa1b..93162cbcd13cf4e33c6fbcd87968bc3ca6441f78 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/pgen2/__pycache__/grammar_parser.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/pgen2/__pycache__/grammar_parser.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/python/__pycache__/__init__.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/python/__pycache__/__init__.cpython-311.pyc index d3cda9356ac6d44c42f1be1cb2ddf1cc8e479530..54f8fad98d740274b3743d8b9a4167cf40be3363 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/python/__pycache__/__init__.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/python/__pycache__/__init__.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/python/__pycache__/diff.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/python/__pycache__/diff.cpython-311.pyc index 031be0225a65cde430827c3c1fb049210729eeae..cb3fac6cf60b21ec3826d3cd6d08ad0ca7601e63 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/python/__pycache__/diff.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/python/__pycache__/diff.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/python/__pycache__/errors.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/python/__pycache__/errors.cpython-311.pyc index 9f2d3c3d10530a73dd7f0d3bf48a6a74101eff1b..4622a4efa465f31c48ab9a1e4ee1670510760be8 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/python/__pycache__/errors.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/python/__pycache__/errors.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/python/__pycache__/parser.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/python/__pycache__/parser.cpython-311.pyc index ef2fa70b751f84d81881b7d0587a573992064073..5931f85e2c3498f8c84ee4b629e421d94070ec8b 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/python/__pycache__/parser.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/python/__pycache__/parser.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/python/__pycache__/pep8.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/python/__pycache__/pep8.cpython-311.pyc index ac808879cd6bae6e3e3c94dde450db2af66bc0a2..0b99545b2931e24dabee4cd7a5cefec3fa70d8ec 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/python/__pycache__/pep8.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/python/__pycache__/pep8.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/python/__pycache__/prefix.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/python/__pycache__/prefix.cpython-311.pyc index 6de745b90cb2f35a4a490e2acb633fa3b9254682..172fcf6fad48bc08aac61c2be20083ee83fe7441 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/python/__pycache__/prefix.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/python/__pycache__/prefix.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/python/__pycache__/token.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/python/__pycache__/token.cpython-311.pyc index 04aba559a9840bcea9fad412a4c8ae79bea0581c..50f9c169baaa4436f4f55533b1f9396e13773c96 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/python/__pycache__/token.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/python/__pycache__/token.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/python/__pycache__/tokenize.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/python/__pycache__/tokenize.cpython-311.pyc index 8d65e224a382e483dd24bc8cd7076845fb874306..f54116cf962c671defc89b9e85869a164da4ccd3 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/python/__pycache__/tokenize.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/python/__pycache__/tokenize.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/python/__pycache__/tree.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/python/__pycache__/tree.cpython-311.pyc index 3dc944cee8fa2d24747ab46a69c00243cc977760..4d8dbb70082efc8f77f338617baf56c6c4662743 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/python/__pycache__/tree.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/parso/python/__pycache__/tree.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/__init__.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/__init__.cpython-311.pyc index ed694f94eb61842b58c1a4a98f0ef60d2064ced3..0d02b8815d794ba9b07162b5412055197e2e3694 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/__init__.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/__init__.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/annotated_types.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/annotated_types.cpython-311.pyc index 230599034a43b6645de253f38875e28b599835ab..6ddc1eb51b4a4cb6200f093eedce759168e78327 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/annotated_types.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/annotated_types.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/class_validators.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/class_validators.cpython-311.pyc index 69c98047aa7edf729957cab7bac3c850fc53f2b2..cd020bae23b936dd00275a56198285dddfc612bf 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/class_validators.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/class_validators.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/color.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/color.cpython-311.pyc index 02e4943d4ddd76ef9d8b37d6f25d5152dbd0f96e..7e75aeacb601b4db5df95315493cf6eb3e2d692a 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/color.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/color.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/config.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/config.cpython-311.pyc index f3f63c1c865193913cba2fd19481c201f26541a7..e767ffafa67aafe392b16240f60eb8669fdbd98e 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/config.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/config.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/dataclasses.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/dataclasses.cpython-311.pyc index 2baaf610dbc0d6c55479194877a8290679ad2225..50ce5ca0dac6da8a983005b31e6a111e0e4fb109 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/dataclasses.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/dataclasses.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/datetime_parse.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/datetime_parse.cpython-311.pyc index f448f60d506fd90f690c6a3358a04db23a6bf3a7..7b46465ad8adf7a9f85ea53eb72040957ae29b4d 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/datetime_parse.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/datetime_parse.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/decorator.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/decorator.cpython-311.pyc index a6a577fb311a30ea4657a267fdab1fe21dd80a6a..23231970be22eee6925fc40cd3ab693fcdda00d3 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/decorator.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/decorator.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/env_settings.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/env_settings.cpython-311.pyc index 4f558324e4bea3719af29c912082c250b57d55ca..78a007f90756cd49952911f1a96b6f30728c9ff1 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/env_settings.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/env_settings.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/error_wrappers.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/error_wrappers.cpython-311.pyc index 55339cdf6b9ce3f7cc30ea38591543cef2228ec9..d20d9284df361a962ebb787ceb2a5faa55ab3c42 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/error_wrappers.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/error_wrappers.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/errors.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/errors.cpython-311.pyc index fad48d1340a4ebbada25664f2dcd0f55bf2d2577..10b60502c0129ccf94c6d287a8bd5ee4bc63bef1 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/errors.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/errors.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/fields.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/fields.cpython-311.pyc index 61430eac77c21c1b86bb963e6abe549f53c2abf0..f602733530a1b9802f6a46b6b81496090e9b5579 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/fields.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/fields.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/json.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/json.cpython-311.pyc index c01918dc115820599744be74f02331f4b7e0a46b..8f75acd7a42b207ce47cbece6b4cb04cd05ac72a 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/json.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/json.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/main.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/main.cpython-311.pyc index a5abfc93280a879dac06a010d521fc34ff059ac7..387fa17e94d7aa84fe2cf6763b6d7f388f19b599 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/main.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/main.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/networks.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/networks.cpython-311.pyc index 3d2e5bc0930f904e79f54ab350af959ed89a7bf4..80df63fbb0d5eec21e80ba41ab090481789a96e9 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/networks.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/networks.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/parse.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/parse.cpython-311.pyc index 1385d6d16763e13b63f957ba8fa5cdf97742218d..6a2e9ac0242bece420b36af910569d4f1bb73205 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/parse.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/parse.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/schema.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/schema.cpython-311.pyc index 3160dcc7ed40d0354091198113e02eccde57efa5..53b3e6688a06cf8b7c534ac153fc1fe23d1da004 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/schema.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/schema.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/tools.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/tools.cpython-311.pyc index 39a6a3283eb0b2fafcecce5c92bf18787f73cb57..7803e229378fe3166d9e9ffe9dce515bad851c69 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/tools.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/tools.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/types.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/types.cpython-311.pyc index bc88ad5c121b1fff53b105d441b7a00ce7889da9..502e4e901360490b88735b6ab1d5c334933b680f 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/types.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/types.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/typing.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/typing.cpython-311.pyc index ceb2778d908990f07e7bacc91ceb08182bca67af..9b94064d6dd7962134b78aa703d3cc583b5fbe85 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/typing.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/typing.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/utils.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/utils.cpython-311.pyc index 4e3dcb36792669661d510687cb85ab57fb63998e..6e698e7c938bcaf5aa765f0bb24d23e9c3dcf454 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/utils.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/utils.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/validators.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/validators.cpython-311.pyc index 5e3d567f386f79ddcd39535951a82529f581e874..90bac2e36f9ce0705677e47dcd8b3628e5e6ead6 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/validators.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/validators.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/version.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/version.cpython-311.pyc index 44b2e19bb70b15353623f415de4f99b7fc079c54..bd901b0679e2acbacceeabedb80bc44452fa6fa3 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/version.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pydantic/__pycache__/version.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pygls/__pycache__/__init__.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pygls/__pycache__/__init__.cpython-311.pyc index a391b34b52098d52fdbd235d57cb5f057475b617..f1f163acc277976c6b7965f58e2edd9a0142e27f 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pygls/__pycache__/__init__.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pygls/__pycache__/__init__.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pygls/__pycache__/capabilities.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pygls/__pycache__/capabilities.cpython-311.pyc index 1868501a6925a7f4e5ef17f29c8303b0d63de273..9c53509e5bf62634be7fc99693d1451d02562a30 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pygls/__pycache__/capabilities.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pygls/__pycache__/capabilities.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pygls/__pycache__/constants.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pygls/__pycache__/constants.cpython-311.pyc index 80996b67953bff6629eb8a77f8bb138f1b84506b..32af549f0e47dfef66841208bfc42b7e92d9e6f7 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pygls/__pycache__/constants.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pygls/__pycache__/constants.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pygls/__pycache__/exceptions.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pygls/__pycache__/exceptions.cpython-311.pyc index dd08a21973467980b275765d18188d409ec36773..b76534bc5252240ebd4e5de8ee74b97a285852ba 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pygls/__pycache__/exceptions.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pygls/__pycache__/exceptions.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pygls/__pycache__/feature_manager.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pygls/__pycache__/feature_manager.cpython-311.pyc index cca64e111901cb895b093299cb460f73b45fa108..5f178d50e819e56cabc9b2a34ad735b8e7a317ab 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pygls/__pycache__/feature_manager.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pygls/__pycache__/feature_manager.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pygls/__pycache__/progress.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pygls/__pycache__/progress.cpython-311.pyc index 0c72e4e35977b1f12206780f2c215e60e53e16a9..d678a2661cb9a979e278f09bb46300c7a4c33f99 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pygls/__pycache__/progress.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pygls/__pycache__/progress.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pygls/__pycache__/protocol.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pygls/__pycache__/protocol.cpython-311.pyc index 35b9f07348851aa9cd962b3e2875d5c3d9374129..0575f21e1d2777753162f46a6cf9486c8165feb1 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pygls/__pycache__/protocol.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pygls/__pycache__/protocol.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pygls/__pycache__/server.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pygls/__pycache__/server.cpython-311.pyc index 5b71785f9d1508ce17cc31be79352b343cb0cb28..17f686126e14149d20ba631d00f50a9f39e61eaa 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pygls/__pycache__/server.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pygls/__pycache__/server.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pygls/__pycache__/uris.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pygls/__pycache__/uris.cpython-311.pyc index 7253c00b84f19363f035a1c3f86ea8ec9c9f474a..0dac1c2fe80fcd2d7c82cd73fc8a88235237a78d 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pygls/__pycache__/uris.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pygls/__pycache__/uris.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pygls/__pycache__/workspace.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pygls/__pycache__/workspace.cpython-311.pyc index 20b265c09e8d55f3eb16e1cd96ed4284d2cb4c12..14668aad08e238b4b4727ed8b8a8a00762bdca6e 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pygls/__pycache__/workspace.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pygls/__pycache__/workspace.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pygls/lsp/__pycache__/__init__.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pygls/lsp/__pycache__/__init__.cpython-311.pyc index 4a371dfeb6763c954b5ee478225318d8246789f8..dee0e44e8999591e565f2287a58d76180608f645 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pygls/lsp/__pycache__/__init__.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/pygls/lsp/__pycache__/__init__.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/typeguard/__pycache__/__init__.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/typeguard/__pycache__/__init__.cpython-311.pyc index 3a248d51f59f282e8b9b809ffee63c0ed58eaf04..e028aad6e692af3d50fffde0abad918101305f9e 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/typeguard/__pycache__/__init__.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/typeguard/__pycache__/__init__.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/typeguard/__pycache__/_checkers.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/typeguard/__pycache__/_checkers.cpython-311.pyc index 424b9429de92afd6728b76a5b2e91b9731865316..1cbfe1469880c3e4204f9c5d683557da030458a9 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/typeguard/__pycache__/_checkers.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/typeguard/__pycache__/_checkers.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/typeguard/__pycache__/_config.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/typeguard/__pycache__/_config.cpython-311.pyc index 9fec5be40eb7c9d8101d2770fa88cc8a04c69dde..79166b81f0a828a24b4d91bfc628debe5a420227 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/typeguard/__pycache__/_config.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/typeguard/__pycache__/_config.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/typeguard/__pycache__/_decorators.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/typeguard/__pycache__/_decorators.cpython-311.pyc index e5df534a7aa2aa495983736baafe4be6cb23d681..ef6c5a539bddb454a6fc8d5224c0e2320040919f 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/typeguard/__pycache__/_decorators.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/typeguard/__pycache__/_decorators.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/typeguard/__pycache__/_exceptions.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/typeguard/__pycache__/_exceptions.cpython-311.pyc index 0f272254e958ed6339a1be958f66f26346edaffe..adec7fcd3dcd06e61b2dc161762017a197d12a27 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/typeguard/__pycache__/_exceptions.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/typeguard/__pycache__/_exceptions.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/typeguard/__pycache__/_functions.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/typeguard/__pycache__/_functions.cpython-311.pyc index 94422448a646b944f1f9ca7caf0183476ab81c54..afafaa2a905b610b77c75d50feeac97b7e78e84c 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/typeguard/__pycache__/_functions.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/typeguard/__pycache__/_functions.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/typeguard/__pycache__/_importhook.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/typeguard/__pycache__/_importhook.cpython-311.pyc index 06e4a7c93273a953949b5bab6eafffab7f7caf13..02e106edfd6e92ea221a2b3ca90a143e77280905 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/typeguard/__pycache__/_importhook.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/typeguard/__pycache__/_importhook.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/typeguard/__pycache__/_memo.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/typeguard/__pycache__/_memo.cpython-311.pyc index c6eeca2403ec9e37e9e8c0efe1bb6c9f4f7d64ad..bc8e9f40092df74d4856557a773991410a60d9ea 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/typeguard/__pycache__/_memo.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/typeguard/__pycache__/_memo.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/typeguard/__pycache__/_transformer.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/typeguard/__pycache__/_transformer.cpython-311.pyc index a264c28a9d068d0373194bcb71e276478a222002..3be7b5812dd5cafaa486f7e40f1c010e3b63445f 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/typeguard/__pycache__/_transformer.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/typeguard/__pycache__/_transformer.cpython-311.pyc differ diff --git a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/typeguard/__pycache__/_utils.cpython-311.pyc b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/typeguard/__pycache__/_utils.cpython-311.pyc index 694537187b6d237d30ce7a16404df56f4796a077..77fda0fba3147f2066f7087875ca934a488241a4 100644 Binary files a/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/typeguard/__pycache__/_utils.cpython-311.pyc and b/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/lib/jedilsp/typeguard/__pycache__/_utils.cpython-311.pyc differ diff --git a/code-server/logs/20230928T192114/exthost1/ms-python.python/Python Language Server.log b/code-server/logs/20230928T192114/exthost1/ms-python.python/Python Language Server.log new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/code-server/logs/20230928T192114/exthost1/ms-python.python/Python.log b/code-server/logs/20230928T192114/exthost1/ms-python.python/Python.log new file mode 100644 index 0000000000000000000000000000000000000000..df6a1437591547ba07627311afd3ad38281294ef --- /dev/null +++ b/code-server/logs/20230928T192114/exthost1/ms-python.python/Python.log @@ -0,0 +1,12 @@ +2023-09-28 19:48:24.106 [info] Experiment 'python.createEnvironment.trigger' is active +2023-09-28 19:48:24.106 [info] Experiment 'pythonPromptNewFormatterExt' is active +2023-09-28 19:48:24.106 [info] Experiment 'pythonPromptNewToolsExt' is active +2023-09-28 19:48:24.106 [info] Experiment 'pythonTerminalEnvVarActivation' is active +2023-09-28 19:48:24.106 [info] Test server listening. +2023-09-28 19:48:24.106 [info] > conda info --json +2023-09-28 19:48:24.106 [info] Python interpreter path: /bin/python3 +2023-09-28 19:48:24.138 [info] > /usr/local/bin/python -I ./app/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/get_output_via_markers.py ./app/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/interpreterInfo.py +2023-09-28 19:48:24.148 [info] > /usr/bin/python3 -I ./app/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/get_output_via_markers.py ./app/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/interpreterInfo.py +2023-09-28 19:48:24.217 [info] > /bin/python3 -I ./app/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/get_output_via_markers.py ./app/code-server/extensions/ms-python.python-2023.16.0-universal/pythonFiles/interpreterInfo.py +2023-09-28 19:48:25.139 [warning] Retry failed, storage update failed for key PYTHON_ENV_INFO_CACHE +2023-09-28 19:48:25.322 [info] Starting Jedi language server for default. diff --git a/code-server/logs/20230928T192114/exthost1/output_logging_20230928T194820/1-Jupyter.log b/code-server/logs/20230928T192114/exthost1/output_logging_20230928T194820/1-Jupyter.log new file mode 100644 index 0000000000000000000000000000000000000000..00847c4fd164618ff4588a2e9c38b260d4e96bdf --- /dev/null +++ b/code-server/logs/20230928T192114/exthost1/output_logging_20230928T194820/1-Jupyter.log @@ -0,0 +1,16 @@ +code-server (1.82.2, snirjhar-colab-code-server.hf.space, server-distro) +Jupyter Extension Version: 2023.7.100. +Python Extension Version: 2023.16.0. +Platform: linux (x64). +Workspace folder /home/linuxbrew, Home = /home/linuxbrew +19:48:23.242 [info] User belongs to experiment group 'FastKernelPicker' +19:48:23.242 [info] User belongs to experiment group 'NewRemoteUriStorage' +19:48:23.242 [info] User belongs to experiment group 'PasswordManager' +19:48:23.242 [info] User belongs to experiment group 'NewJupyterSession' +19:48:23.743 [info] Start refreshing Kernel Picker (1695930503743) +19:48:23.746 [info] Using Pylance +19:48:24.385 [warn] Failed to get activated env vars for /bin/python3 in 302ms +19:48:24.430 [info] Process Execution: /bin/python3 -c "import site;print("USER_BASE_VALUE");print(site.USER_BASE);print("USER_BASE_VALUE");" +19:48:24.450 [info] Process Execution: /bin/python3 -m pip list +19:48:24.473 [info] Process Execution: /bin/python3 -c "import pip;print('6af208d0-cb9c-427f-b937-ff563e17efdf')" +19:48:25.682 [info] End refreshing Kernel Picker (1695930503743) diff --git a/code-server/logs/20230928T192114/exthost1/output_logging_20230928T194820/2-Jupyter Server Console.log b/code-server/logs/20230928T192114/exthost1/output_logging_20230928T194820/2-Jupyter Server Console.log new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/code-server/logs/20230928T192114/exthost1/output_logging_20230928T194820/3-Python Test Log.log b/code-server/logs/20230928T192114/exthost1/output_logging_20230928T194820/3-Python Test Log.log new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/code-server/logs/20230928T192114/exthost1/remoteexthost.log b/code-server/logs/20230928T192114/exthost1/remoteexthost.log new file mode 100644 index 0000000000000000000000000000000000000000..4cb0a2147be607e0f9f5f8725a6174bcbca3ddd0 --- /dev/null +++ b/code-server/logs/20230928T192114/exthost1/remoteexthost.log @@ -0,0 +1,24 @@ +2023-09-28 19:48:20.823 [info] Extension host with pid 44 started +2023-09-28 19:48:20.824 [error] Error: EEXIST: file already exists, open '/home/linuxbrew/app/code-server/User/workspaceStorage/-10b609d8/vscode.lock' +2023-09-28 19:48:20.826 [info] Lock '/home/linuxbrew/app/code-server/User/workspaceStorage/-10b609d8/vscode.lock': Could not acquire lock, checking if the file is stale. +2023-09-28 19:48:20.830 [info] Lock '/home/linuxbrew/app/code-server/User/workspaceStorage/-10b609d8/vscode.lock': The pid 154 appears to be gone. +2023-09-28 19:48:20.830 [info] Lock '/home/linuxbrew/app/code-server/User/workspaceStorage/-10b609d8/vscode.lock': Deleting a stale lock. +2023-09-28 19:48:20.832 [info] Lock '/home/linuxbrew/app/code-server/User/workspaceStorage/-10b609d8/vscode.lock': Lock acquired. +2023-09-28 19:48:21.156 [info] ExtensionService#_doActivateExtension vscode.emmet, startup: false, activationEvent: 'onLanguage' +2023-09-28 19:48:21.258 [info] ExtensionService#_doActivateExtension vscode.git-base, startup: true, activationEvent: '*', root cause: vscode.git +2023-09-28 19:48:21.302 [info] ExtensionService#_doActivateExtension vscode.git, startup: true, activationEvent: '*' +2023-09-28 19:48:21.303 [info] ExtensionService#_doActivateExtension vscode.github, startup: true, activationEvent: '*' +2023-09-28 19:48:21.522 [info] Eager extensions activated +2023-09-28 19:48:21.522 [info] ExtensionService#_doActivateExtension vscode.debug-auto-launch, startup: false, activationEvent: 'onStartupFinished' +2023-09-28 19:48:21.523 [info] ExtensionService#_doActivateExtension vscode.merge-conflict, startup: false, activationEvent: 'onStartupFinished' +2023-09-28 19:48:22.324 [info] ExtensionService#_doActivateExtension vscode.ipynb, startup: false, activationEvent: 'onNotebookSerializer:jupyter-notebook' +2023-09-28 19:48:22.392 [info] ExtensionService#_doActivateExtension vscode.tunnel-forwarding, startup: false, activationEvent: 'onTunnel' +2023-09-28 19:48:22.825 [info] ExtensionService#_doActivateExtension ms-toolsai.jupyter, startup: false, activationEvent: 'onNotebook:jupyter-notebook' +2023-09-28 19:48:22.826 [info] ExtensionService#_doActivateExtension ms-toolsai.vscode-jupyter-cell-tags, startup: false, activationEvent: 'onNotebook:jupyter-notebook' +2023-09-28 19:48:22.826 [info] ExtensionService#_doActivateExtension ms-toolsai.vscode-jupyter-slideshow, startup: false, activationEvent: 'onNotebook:jupyter-notebook' +2023-09-28 19:48:22.826 [info] ExtensionService#_doActivateExtension ms-toolsai.jupyter-renderers, startup: false, activationEvent: 'onNotebook:*' +2023-09-28 19:48:23.042 [info] ExtensionService#_doActivateExtension ms-python.python, startup: false, activationEvent: 'onLanguage:python' +2023-09-28 19:48:25.483 [error] Error: Module 'pip' not installed. + at Jd.execModule (/home/linuxbrew/app/code-server/extensions/ms-toolsai.jupyter-2023.7.100-universal/out/extension.node.js:7:40513) + at async Ed.getPackageInformation (/home/linuxbrew/app/code-server/extensions/ms-toolsai.jupyter-2023.7.100-universal/out/extension.node.js:7:31745) +2023-09-28 19:49:23.773 [info] ExtensionService#_doActivateExtension vscode.npm, startup: false, activationEvent: 'onTerminalQuickFixRequest:ms-vscode.npm-command' diff --git a/code-server/logs/20230928T192114/exthost1/vscode.git/Git.log b/code-server/logs/20230928T192114/exthost1/vscode.git/Git.log new file mode 100644 index 0000000000000000000000000000000000000000..87060c9b1bd4c6e21b3d3d82512f75a7d7383e3d --- /dev/null +++ b/code-server/logs/20230928T192114/exthost1/vscode.git/Git.log @@ -0,0 +1,23 @@ +2023-09-28 19:48:21.722 [info] Log level: Info +2023-09-28 19:48:21.722 [info] Validating found git in: "git" +2023-09-28 19:48:21.722 [info] Using git "2.39.2" from "git" +2023-09-28 19:48:21.722 [info] > git rev-parse --show-toplevel [3ms] +2023-09-28 19:48:21.722 [info] fatal: not a git repository (or any of the parent directories): .git +2023-09-28 19:48:21.722 [info] > git rev-parse --show-toplevel [1ms] +2023-09-28 19:48:21.722 [info] fatal: not a git repository (or any of the parent directories): .git +2023-09-28 19:48:21.722 [info] > git rev-parse --show-toplevel [1ms] +2023-09-28 19:48:21.722 [info] fatal: not a git repository (or any of the parent directories): .git +2023-09-28 19:48:21.722 [info] > git rev-parse --show-toplevel [0ms] +2023-09-28 19:48:21.722 [info] fatal: not a git repository (or any of the parent directories): .git +2023-09-28 19:48:21.722 [info] > git rev-parse --show-toplevel [1ms] +2023-09-28 19:48:21.722 [info] fatal: not a git repository (or any of the parent directories): .git +2023-09-28 19:48:21.722 [info] > git rev-parse --show-toplevel [1ms] +2023-09-28 19:48:21.722 [info] fatal: not a git repository (or any of the parent directories): .git +2023-09-28 19:48:21.722 [info] > git rev-parse --show-toplevel [0ms] +2023-09-28 19:48:21.722 [info] fatal: not a git repository (or any of the parent directories): .git +2023-09-28 19:48:22.313 [info] > git rev-parse --show-toplevel [1ms] +2023-09-28 19:48:22.313 [info] fatal: not a git repository (or any of the parent directories): .git +2023-09-28 19:48:22.323 [info] > git rev-parse --show-toplevel [1ms] +2023-09-28 19:48:22.323 [info] fatal: not a git repository (or any of the parent directories): .git +2023-09-28 19:48:33.325 [info] > git rev-parse --show-toplevel [1ms] +2023-09-28 19:48:33.325 [info] fatal: not a git repository (or any of the parent directories): .git diff --git a/code-server/logs/20230928T192114/exthost1/vscode.github/GitHub.log b/code-server/logs/20230928T192114/exthost1/vscode.github/GitHub.log new file mode 100644 index 0000000000000000000000000000000000000000..2941aaa87910adc762064096017f51bb3b7cd4af --- /dev/null +++ b/code-server/logs/20230928T192114/exthost1/vscode.github/GitHub.log @@ -0,0 +1 @@ +2023-09-28 19:48:21.722 [info] Log level: Info diff --git a/code-server/logs/20230928T192114/network.log b/code-server/logs/20230928T192114/network.log new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/code-server/logs/20230928T192114/ptyhost.log b/code-server/logs/20230928T192114/ptyhost.log new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/code-server/logs/20230928T192114/remoteagent.log b/code-server/logs/20230928T192114/remoteagent.log new file mode 100644 index 0000000000000000000000000000000000000000..051ecc1e861eeb4113f10d5c46dbcfcefbd7a852 --- /dev/null +++ b/code-server/logs/20230928T192114/remoteagent.log @@ -0,0 +1,12 @@ +2023-09-28 19:21:14.695 [info] + + + + +2023-09-28 19:21:14.706 [info] Extension host agent started. +2023-09-28 19:21:14.809 [error] [10.16.46.47][5235cc87][ManagementConnection] Unknown reconnection token (never seen). +2023-09-28 19:21:14.905 [error] [10.16.46.47][a00c6106][ExtensionHostConnection] Unknown reconnection token (never seen). +2023-09-28 19:48:17.376 [info] [10.16.38.82][0cd9cd20][ManagementConnection] New connection established. +2023-09-28 19:48:18.074 [info] [10.16.46.47][4f74b373][ExtensionHostConnection] New connection established. +2023-09-28 19:48:18.138 [info] [10.16.46.47][4f74b373][ExtensionHostConnection] <44> Launched Extension Host Process. +2023-09-28 19:48:23.989 [warning] Using the in-memory credential store as the operating system's credential store could not be accessed. Please see https://aka.ms/vscode-server-keyring on how to set this up. Details: libsecret-1.so.0: cannot open shared object file: No such file or directory