From 47f461f58a4ced20ff1cd5ac915f3683d34a4e14 Mon Sep 17 00:00:00 2001 From: Ryan <25047695+Ryanf55@users.noreply.github.com> Date: Mon, 11 Nov 2024 16:36:24 -0700 Subject: [PATCH] Indent Co-authored-by: Peter Barker --- MAVProxy/modules/mavproxy_console.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/MAVProxy/modules/mavproxy_console.py b/MAVProxy/modules/mavproxy_console.py index 1336d6d24d..ce2e729364 100644 --- a/MAVProxy/modules/mavproxy_console.py +++ b/MAVProxy/modules/mavproxy_console.py @@ -91,10 +91,12 @@ def __init__(self, mpstate): # create the main menu if mp_util.has_wxpython: self.menu = MPMenuTop([]) - mavproxy_items = [MPMenuItem('Settings', 'Settings', 'menuSettings'), - MPMenuItem('Show Map', 'Load Map', '# module load map'), - MPMenuItem('Show HUD', 'Load HUD', '# module load horizon'), - MPMenuItem('Show Checklist', 'Load Checklist', '# module load checklist')] + mavproxy_items = [ + MPMenuItem('Settings', 'Settings', 'menuSettings'), + MPMenuItem('Show Map', 'Load Map', '# module load map'), + MPMenuItem('Show HUD', 'Load HUD', '# module load horizon'), + MPMenuItem('Show Checklist', 'Load Checklist', '# module load checklist'), + ] # wsproto is not installed by default. # Only add the menu if it's available.