Author: Charles Zablit Date: 2026-01-08T18:18:21Z New Revision: 672a4c3f34ef0ecbef8966050b4d2105f4b6d088
URL: https://github.com/llvm/llvm-project/commit/672a4c3f34ef0ecbef8966050b4d2105f4b6d088 DIFF: https://github.com/llvm/llvm-project/commit/672a4c3f34ef0ecbef8966050b4d2105f4b6d088.diff LOG: [NFC][lldb] fix docstring indentation (#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. This is a prelude to https://github.com/llvm/llvm-project/pull/174635. Added: Modified: lldb/test/API/tools/lldb-dap/runInTerminal/TestDAP_runInTerminal.py Removed: ################################################################################ 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
