From 48cf833cb8d07ab38c0518b756c3187f26e55c68 Mon Sep 17 00:00:00 2001 From: Mykola Grymalyuk Date: Sat, 27 May 2023 20:03:02 -0600 Subject: [PATCH] GUI: Strip sleep test --- resources/wx_gui/gui_sys_patch_display.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/resources/wx_gui/gui_sys_patch_display.py b/resources/wx_gui/gui_sys_patch_display.py index d909477fd..6129a11dd 100644 --- a/resources/wx_gui/gui_sys_patch_display.py +++ b/resources/wx_gui/gui_sys_patch_display.py @@ -1,7 +1,6 @@ import wx import os -import time import logging import plistlib import threading @@ -88,7 +87,6 @@ class SysPatchDisplayFrame(wx.Frame): def _fetch_patches(self) -> None: nonlocal patches patches = sys_patch_detect.DetectRootPatch(self.constants.computer.real_model, self.constants).detect_patch_set() - time.sleep(5) thread = threading.Thread(target=_fetch_patches, args=(self,)) thread.start()