improve version detection

This commit is contained in:
Nick Sweeting 2024-09-30 18:12:48 -07:00
parent b913e6f426
commit 66cd711df9
No known key found for this signature in database
3 changed files with 27 additions and 13 deletions

View file

@ -102,7 +102,7 @@ class BaseHook(BaseModel):
def register(self, settings):
"""Called when django.apps.AppConfig.ready() is called"""
print("REGISTERED HOOK:", self.hook_module)
# print("REGISTERED HOOK:", self.hook_module)
self._is_registered = True

View file

@ -132,8 +132,8 @@ class BasePlugin(BaseModel):
self._is_registered = True
bump_startup_progress_bar()
print('◣----------------- REGISTERED PLUGIN:', self.plugin_module, '-----------------◢')
print()
# print('◣----------------- REGISTERED PLUGIN:', self.plugin_module, '-----------------◢')
# print()
@abx.hookimpl
def ready(self, settings=None):