From a91f47b226da0e3a7f5aa885fca5272c71057ef2 Mon Sep 17 00:00:00 2001 From: 2Shirt <2xShirt@gmail.com> Date: Sat, 22 Oct 2022 19:12:02 -0700 Subject: [PATCH] Reorder Auto Repairs entries --- scripts/auto_repairs.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/auto_repairs.py b/scripts/auto_repairs.py index 5ce9703a..f37ccd56 100644 --- a/scripts/auto_repairs.py +++ b/scripts/auto_repairs.py @@ -71,11 +71,11 @@ BASE_MENUS = { MenuEntry('Enable Defender Scans', 'auto_enable_defender'), MenuEntry('Windows Defender', 'auto_microsoft_defender'), MenuEntry('Remove Custom Power Plan', 'auto_remove_power_plan'), - MenuEntry('Reboot', 'auto_reboot'), ), 'Manual Steps': ( - MenuEntry('AdwCleaner', 'auto_adwcleaner'), MenuEntry('Malwarebytes (Install)', 'auto_mbam_install'), + MenuEntry('Reboot', 'auto_reboot'), + MenuEntry('AdwCleaner', 'auto_adwcleaner'), MenuEntry('Malwarebytes (Run)', 'auto_mbam_run'), MenuEntry('Malwarebytes (Uninstall)', 'auto_mbam_uninstall'), MenuEntry('UninstallView', 'auto_uninstallview'),