From 0156752686a87a01e878280b7fd3507f738b4ee7 Mon Sep 17 00:00:00 2001 From: Ivan Usov Date: Tue, 20 Oct 2020 10:16:37 +0200 Subject: [PATCH] Add debug script --- .vscode/launch.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..46b92fb --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,13 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "pyzebra", + "type": "python", + "request": "launch", + "program": "${workspaceFolder}/pyzebra/cli.py", + "console": "internalConsole", + "env": {}, + }, + ] +}