Description
After upgrading from 1.1.385 to 1.1.386 pyright raises errors "Pyproject file parse attempt 1 error:"
Issue is raised if pyproject.toml has comments in arrays
E.g. error in 1.1.386 (while OK in 1.1.385
[project]
name = "test"
version = "1.0.0"
dependencies = [
"lib_a==1.1.1", # comment
"lib_b==1.1.2"
]
If removing comments, parsing is OK in new version also
[project]
name = "test"
version = "1.0.0"
dependencies = [
"lib_a==1.1.1",
"lib_b==1.1.2"
]
Description
After upgrading from 1.1.385 to 1.1.386 pyright raises errors "Pyproject file parse attempt 1 error:"
Issue is raised if pyproject.toml has comments in arrays
E.g. error in 1.1.386 (while OK in 1.1.385
If removing comments, parsing is OK in new version also