Skip to content

Commit a2c7d0f

Browse files
committed
Applying formatting.
1 parent 83eeffb commit a2c7d0f

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

lldb/test/API/tools/lldb-dap/launch/TestDAP_launch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def test_failing_launch_commands_and_run_in_terminal(self):
5252
self.assertTrue(self.get_dict_value(response, ["body", "error", "showUser"]))
5353
self.assertEqual(
5454
"launchCommands and runInTerminal are mutually exclusive",
55-
self.get_dict_value(response, ['body', 'error', 'format']),
55+
self.get_dict_value(response, ["body", "error", "format"]),
5656
)
5757

5858
@skipIfWindows

lldb/tools/lldb-dap/Handler/RestartRequestHandler.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,8 @@ void RestartRequestHandler::operator()(
9090
if (arguments) {
9191
// The optional `arguments` field in RestartRequest can contain an updated
9292
// version of the launch arguments. If there's one, use it.
93-
if (const llvm::json::Value *restart_arguments = arguments->get("arguments")) {
93+
if (const llvm::json::Value *restart_arguments =
94+
arguments->get("arguments")) {
9495
protocol::LaunchRequestArguments updated_arguments;
9596
llvm::json::Path::Root root;
9697
if (!fromJSON(*restart_arguments, updated_arguments, root)) {

0 commit comments

Comments
 (0)