Skip to content

Commit 219b5d4

Browse files
committed
minor chanages
1 parent ffaf9fe commit 219b5d4

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

lsp_types/pyright/session.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@
1313
class PyrightSession(lsp_types.Session):
1414
"""
1515
Pyright LSP session implementation.
16-
TODO: Move process initialization and config_path within the session instance
16+
TODO:
17+
- Move process initialization and config_path within the session instance
18+
- Support session recycling by supporting subprocess reuse
1719
"""
1820

1921
@classmethod

tests/test_pyright/test_pyright_session.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ def add_numbers(a: int, b: int) -> int:
3737
pyright_session = await PyrightSession.create(
3838
base_path=temp_path,
3939
initial_code=code,
40-
options={"include": ["."]}, # Include the current directory for imports
4140
)
4241

4342
# Get diagnostics to check for any errors

0 commit comments

Comments
 (0)