From f2233ff6e7e85eb94f841f9658263f891f78dab8 Mon Sep 17 00:00:00 2001 From: Spenser Black Date: Mon, 23 Jun 2025 16:45:46 -0400 Subject: [PATCH] Add space between punctuation and next sentence --- pylsp/__main__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pylsp/__main__.py b/pylsp/__main__.py index abc0a0bb..760f8829 100644 --- a/pylsp/__main__.py +++ b/pylsp/__main__.py @@ -40,7 +40,7 @@ def add_arguments(parser) -> None: "--check-parent-process", action="store_true", help="Check whether parent process is still alive using os.kill(ppid, 0) " - "and auto shut down language server process when parent process is not alive." + "and auto shut down language server process when parent process is not alive. " "Note that this may not work on a Windows machine.", ) @@ -50,7 +50,7 @@ def add_arguments(parser) -> None: ) log_group.add_argument( "--log-file", - help="Redirect logs to the given file instead of writing to stderr." + help="Redirect logs to the given file instead of writing to stderr. " "Has no effect if used with --log-config.", )