From a2aeae0b3323331e3bc7ea29b8cd4162d1927f8c Mon Sep 17 00:00:00 2001 From: Laurent Fainsin Date: Fri, 2 Sep 2022 16:33:08 +0200 Subject: [PATCH] style: autoformat Former-commit-id: ed6c69e23928e8880ce2f3df0d15c2958fb3d1ba [formerly 892c4e0886fd18e0e6282956482b86e3d2d69f19] Former-commit-id: f615de2570b514abe52a24eff1c2ab14cd394933 --- .devcontainer.tmp/devcontainer.json | 2 +- .vscode/launch.json | 5 +---- .vscode/settings.json | 10 +++++----- 3 files changed, 7 insertions(+), 10 deletions(-) diff --git a/.devcontainer.tmp/devcontainer.json b/.devcontainer.tmp/devcontainer.json index 0a35cd6..33cc2de 100644 --- a/.devcontainer.tmp/devcontainer.json +++ b/.devcontainer.tmp/devcontainer.json @@ -3,4 +3,4 @@ "dockerComposeFile": "docker-compose.yml", "service": "development", "workspaceFolder": "/workspace" -} \ No newline at end of file +} diff --git a/.vscode/launch.json b/.vscode/launch.json index fdb26d6..bdbded8 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -1,7 +1,4 @@ { - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { @@ -16,7 +13,7 @@ "--output", "output_onnx.png", "--model", - "good.onnx", + "good.onnx" ], "justMyCode": false } diff --git a/.vscode/settings.json b/.vscode/settings.json index 8a7c374..e6d4181 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,17 +1,17 @@ { + "python.defaultInterpreterPath": ".venv/bin/python", "python.formatting.provider": "black", "editor.formatOnSave": true, "python.linting.enabled": true, "python.linting.lintOnSave": true, - // "python.linting.flake8Enabled": true, - // "python.linting.banditEnabled": true, - "python.defaultInterpreterPath": ".venv/bin/python", + "python.linting.mypyEnabled": true, + "jupyter.debugJustMyCode": false, "[python]": { "editor.codeActionsOnSave": { "source.organizeImports": true } }, - "jupyter.debugJustMyCode": false, + "files.insertFinalNewline": true, "files.exclude": { "**/.git": true, "**/.svn": true, @@ -21,4 +21,4 @@ "**/Thumbs.db": true, "**/__pycache__": true, } -} \ No newline at end of file +}