Skip to content

Commit

Permalink
fix: update optionality of the is_allowed_to_start() method
Browse files Browse the repository at this point in the history
  • Loading branch information
rchl committed Oct 2, 2024
1 parent e0f4692 commit 67aa37c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions st3/lsp_utils/_client_handler/interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,9 @@ def on_settings_read(cls, settings: sublime.Settings) -> bool:
def is_allowed_to_start(
cls,
window: sublime.Window,
initiating_view: Optional[sublime.View] = None,
workspace_folders: Optional[List[WorkspaceFolder]] = None,
configuration: Optional[ClientConfig] = None
initiating_view: sublime.View,
workspace_folders: List[WorkspaceFolder],
configuration: ClientConfig
) -> Optional[str]:
...

Expand Down

0 comments on commit 67aa37c

Please sign in to comment.