From 2c28c8edd670c17cf11af35c2d70bd295014a993 Mon Sep 17 00:00:00 2001 From: Nikita Stupin <18281368+nikitastupin@users.noreply.github.com> Date: Fri, 3 May 2024 21:22:25 +0200 Subject: [PATCH] change yapf to black (#93) and format --- .vscode/settings.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 08967c9..be21aa5 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -3,7 +3,7 @@ "python.linting.pylintEnabled": false, "python.linting.enabled": false, "python.linting.pylintPath": "./.venv/bin/pylint", - "python.formatting.provider": "yapf", + "python.formatting.provider": "black", "editor.formatOnSave": true, "python.defaultInterpreterPath": "./.venv/bin/python", "mypy.runUsingActiveInterpreter": true, @@ -38,6 +38,6 @@ ".venv/**" ], "files.exclude": { - "**/__pycache__": true, + "**/__pycache__": true } -} \ No newline at end of file +}