From a43a72d0f469920ce78493f4ad42bdcf38bd874c Mon Sep 17 00:00:00 2001 From: wolflu05 <76838159+wolflu05@users.noreply.github.com> Date: Wed, 12 Jul 2023 14:49:50 +0000 Subject: [PATCH] Remove debug print --- InvenTree/part/apps.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/InvenTree/part/apps.py b/InvenTree/part/apps.py index 5d77f76183..1e0405a379 100644 --- a/InvenTree/part/apps.py +++ b/InvenTree/part/apps.py @@ -18,14 +18,10 @@ class PartConfig(AppConfig): def ready(self): """This function is called whenever the Part app is loaded.""" # skip loading if plugins are not loaded or we run in a background thread - print("LOAD_BEFORE") if not isPluginRegistryLoaded() or not isInMainThread(): return - print("LOAD_AFTER") - if canAppAccessDatabase(): - print("LOAD_DB_ACCESS") self.update_trackable_status() self.reset_part_pricing_flags()