Skip to content

Commit

Permalink
apply format
Browse files Browse the repository at this point in the history
  • Loading branch information
okdshin committed Nov 23, 2023
1 parent 9368d93 commit d700cd4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion flatline_lsp.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,8 @@ def __init__(self, latest_completion_id: List[int], latest_completion_id_lock: t
def __call__(self, *args, **kwargs) -> bool:
with self.latest_completion_id_lock:
if self.latest_completion_id[0] != self.completion_id:
self.lang_server.show_message(f"stop-cutoff-completion {self.completion_id}", lsp.MessageType.Info)
self.lang_server.show_message(
f"stop-cutoff-completion {self.completion_id}", lsp.MessageType.Info)
return True
else:
return False
Expand Down

0 comments on commit d700cd4

Please sign in to comment.