From 49a392f4e229798b3e6d14826e75995fb3fb57ee Mon Sep 17 00:00:00 2001 From: Tom Brennan Date: Mon, 30 Sep 2024 12:34:22 -0400 Subject: [PATCH] fix: add setting to fix mypy pydantic warning on vs code dev container setup (#4292) --- .devcontainer/devcontainer.json | 1 + 1 file changed, 1 insertion(+) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 3bcb22c5fe..fed52b1888 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -25,6 +25,7 @@ "python.formatting.autopep8Path": "/usr/local/py-utils/bin/autopep8", "python.formatting.blackPath": "/usr/local/py-utils/bin/black", "python.formatting.yapfPath": "/usr/local/py-utils/bin/yapf", + "mypy.runUsingActiveInterpreter": true }, "extensions": [ "charliermarsh.ruff",