From b7c460a1e8c03d7871495f9c54baac542fec3f44 Mon Sep 17 00:00:00 2001 From: Justin Campbell Date: Mon, 28 Sep 2020 12:56:55 -0400 Subject: [PATCH] Fix absolute path reference --- Dev Environment Setup Guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dev Environment Setup Guide.md b/Dev Environment Setup Guide.md index f2e6be4..885b332 100644 --- a/Dev Environment Setup Guide.md +++ b/Dev Environment Setup Guide.md @@ -219,7 +219,7 @@ Create or modify the file `.vscode/settings.json` and add the following: At this point, your `.vscode/settings.json` file should look like this: ```json { - "python.pythonPath": "/Users/justincampbell/GitHub/webqueue2/api/venv/bin/python3", + "python.pythonPath": "./api/venv/bin/python3", "autoDocstring.customTemplatePath": "./docstring-format.mustache" } ```