https://github.com/charles-zablit created https://github.com/llvm/llvm-project/pull/175042
This patch fixes the indentation of 2 docstrings in `TestDAP_runInTerminal.py`. Running `black` on that file with the default settings causes this change. `darker` does not seem to catch it. >From b1bb0e887bb963d0420d42650a466754868042d9 Mon Sep 17 00:00:00 2001 From: Charles Zablit <[email protected]> Date: Thu, 8 Jan 2026 18:11:31 +0000 Subject: [PATCH] [NFC][lldb] fix docstring indentation --- .../tools/lldb-dap/runInTerminal/TestDAP_runInTerminal.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lldb/test/API/tools/lldb-dap/runInTerminal/TestDAP_runInTerminal.py b/lldb/test/API/tools/lldb-dap/runInTerminal/TestDAP_runInTerminal.py index d7e0168239f34..0e78a5f36a4e4 100644 --- a/lldb/test/API/tools/lldb-dap/runInTerminal/TestDAP_runInTerminal.py +++ b/lldb/test/API/tools/lldb-dap/runInTerminal/TestDAP_runInTerminal.py @@ -30,8 +30,8 @@ def read_error_message(fifo_file): @skipIfWindows def test_runInTerminal(self): """ - Tests the "runInTerminal" reverse request. It makes sure that the IDE can - launch the inferior with the correct environment variables and arguments. + Tests the "runInTerminal" reverse request. It makes sure that the IDE can + launch the inferior with the correct environment variables and arguments. """ program = self.getBuildArtifact("a.out") source = "main.c" @@ -77,8 +77,8 @@ def test_runInTerminal(self): @skipIfWindows def test_runInTerminalWithObjectEnv(self): """ - Tests the "runInTerminal" reverse request. It makes sure that the IDE can - launch the inferior with the correct environment variables using an object. + Tests the "runInTerminal" reverse request. It makes sure that the IDE can + launch the inferior with the correct environment variables using an object. """ program = self.getBuildArtifact("a.out") self.build_and_launch(program, console="integratedTerminal", env={"FOO": "BAR"}) _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
