[Lldb-commits] [lldb] [NFC][lldb] fix docstring indentation (PR #175042)

Charles Zablit via lldb-commits lldb-commits at lists.llvm.org
Thu Jan 8 10:12:46 PST 2026


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 <c_zablit at apple.com>
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"})



More information about the lldb-commits mailing list