https://github.com/chdsbd/vscode-python-ls-reproduction
https://github.com/chdsbd/vscode-python-ls-reproduction
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/chdsbd/vscode-python-ls-reproduction
- Owner: chdsbd
- Created: 2019-04-18T20:27:32.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-04-18T20:28:40.000Z (about 7 years ago)
- Last Synced: 2025-01-02T01:16:34.206Z (over 1 year ago)
- Language: Python
- Size: 9.12 MB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# vscode-reproduction
1. run `poetry install`
2. open vscode in root directory (`vscode .`)
3. navigate to `test_user_agent.py` and see unresolved import errors
If the following diff is applied and `poetry install` is run again, the
unresolved import issues disappear.
```diff
diff --git a/pyproject.toml b/pyproject.toml
index 56d7c43..5909876 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -3,9 +3,6 @@ name = "backend"
version = "0.1.0"
description = ""
authors = []
-packages = [
- { include = "core", from = "backend" },
-]
[tool.poetry.dependencies]
python = "^3.7"
```