From 59dbcbff07f3278377741305d15d7ffecfd51a3c Mon Sep 17 00:00:00 2001 From: Your Name Date: Sat, 11 Jan 2025 19:58:27 -0500 Subject: [PATCH] fix issues from lint auto fix --- catalog/apps.py | 3 +++ common/templates/common_libs.html | 2 +- journal/apps.py | 1 + mastodon/apps.py | 2 +- social/apps.py | 5 ++++- takahe/apps.py | 2 +- users/apps.py | 2 +- 7 files changed, 12 insertions(+), 5 deletions(-) diff --git a/catalog/apps.py b/catalog/apps.py index 53f8547a..3db404ba 100644 --- a/catalog/apps.py +++ b/catalog/apps.py @@ -7,9 +7,12 @@ class CatalogConfig(AppConfig): def ready(self): # load key modules in proper order, make sure class inject and signal works as expected + from catalog import api, models, sites # noqa from catalog.models import init_catalog_audit_log, init_catalog_search_models + from journal import models as journal_models # noqa # register cron jobs + from catalog.jobs import DiscoverGenerator, PodcastUpdater # noqa init_catalog_search_models() init_catalog_audit_log() diff --git a/common/templates/common_libs.html b/common/templates/common_libs.html index 44db7091..2e33a606 100644 --- a/common/templates/common_libs.html +++ b/common/templates/common_libs.html @@ -37,7 +37,7 @@ -