Skip to content

Commit

Permalink
LSP_METHODS_MAP: Correct server -> client types
Browse files Browse the repository at this point in the history
  • Loading branch information
MatejKastak committed Jul 1, 2021
1 parent 723f467 commit aa74c25
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pygls/lsp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,12 @@
# Workspace
WORKSPACE_APPLY_EDIT: (None, ApplyWorkspaceEditResponse, ApplyWorkspaceEditParams, ),
WORKSPACE_CODE_LENS_REFRESH: (None, None, None),
WORKSPACE_CONFIGURATION: (None, List[Any], ConfigurationParams, ),
WORKSPACE_CONFIGURATION: (None, ConfigurationParams, List[Any], ),
WORKSPACE_DID_CHANGE_CONFIGURATION: (None, DidChangeConfigurationParams, None, ),
WORKSPACE_DID_CHANGE_WATCHED_FILES: (None, DidChangeWatchedFilesParams, None, ),
WORKSPACE_DID_CHANGE_WORKSPACE_FOLDERS: (None, DidChangeWorkspaceFoldersParams, None, ),
WORKSPACE_EXECUTE_COMMAND: (None, ExecuteCommandParams, Optional[Any], ),
WORKSPACE_FOLDERS: (None, Optional[List[WorkspaceFolder]], None, ),
WORKSPACE_FOLDERS: (None, None, Optional[List[WorkspaceFolder]], ),
WORKSPACE_SEMANTIC_TOKENS_REFRESH: (None, None, None),
WORKSPACE_SYMBOL: (None, WorkspaceSymbolParams, Optional[List[SymbolInformation]], ),
# Text Document Synchronization
Expand Down

0 comments on commit aa74c25

Please sign in to comment.