[Lldb-commits] [lldb] [NFC][lldb] fix docstring indentation (PR #175042)
via lldb-commits
lldb-commits at lists.llvm.org
Thu Jan 8 10:13:22 PST 2026
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-lldb
Author: Charles Zablit (charles-zablit)
<details>
<summary>Changes</summary>
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.
---
Full diff: https://github.com/llvm/llvm-project/pull/175042.diff
1 Files Affected:
- (modified) lldb/test/API/tools/lldb-dap/runInTerminal/TestDAP_runInTerminal.py (+4-4)
``````````diff
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"})
``````````
</details>
https://github.com/llvm/llvm-project/pull/175042
More information about the lldb-commits
mailing list