This PR turns on the `python.analysis.autoImportCompletions` setting in `.vscode/settings.json`, enabling auto-import functionality for Python files in Sentry.
@@ -102,5 +102,8 @@
"python.testing.pytestEnabled": true,
"python.testing.unittestEnabled": false,
"python.testing.pytestPath": "${workspaceFolder}/.venv/bin/pytest",
- "python.testing.pytestArgs": ["tests"]
+ "python.testing.pytestArgs": [
+ "tests"
+ ],
+ "python.analysis.autoImportCompletions": true
}