From 36ab91617cea5942efb2cefe1c7f49fa20e00262 Mon Sep 17 00:00:00 2001 From: Dietrich Epp Date: Mon, 4 Apr 2022 13:53:01 -0400 Subject: [PATCH] VS Code: Use spaces for indenting Python --- .vscode/settings.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.vscode/settings.json b/.vscode/settings.json index f74314d..699362f 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -9,5 +9,8 @@ "[json]": { "editor.insertSpaces": true, "editor.tabSize": 2 + }, + "[python]": { + "editor.insertSpaces": true } }