From e8ac0e1f58715861298a8a88d942d1c3e3563ba5 Mon Sep 17 00:00:00 2001 From: John Lancaster <32917998+jsl12@users.noreply.github.com> Date: Thu, 25 May 2023 23:36:40 -0500 Subject: [PATCH] fixed the autopep8 args --- .devcontainer/devcontainer.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 82da998..51eb22a 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -26,9 +26,11 @@ // "python.editor.defaultFormatter": "ms-python.autopep8", "[python]": { "editor.defaultFormatter": "ms-python.autopep8", - "formatting.autopep8Args": ["--max-line-length", "120", "--experimental"], "editor.formatOnSave": true - } + }, + "autopep8.args": [ + "--max-line-length 120" + ] } } }