From 146ea4ab4d2006768391d6587d7b937f08e5556f Mon Sep 17 00:00:00 2001 From: geoffrey45 Date: Fri, 17 Feb 2023 18:36:53 +0300 Subject: [PATCH] remove print --- app/utils.py | 1 - manage.py | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/app/utils.py b/app/utils.py index 65fc309..c5055cc 100644 --- a/app/utils.py +++ b/app/utils.py @@ -279,7 +279,6 @@ def parse_feat_from_title(title: str) -> tuple[list[str], str]: artists = match.group(1) artists = split_artists(artists, with_and=True) - print(artists) # remove "feat" group from title new_title = re.sub(regex, "", title, flags=re.IGNORECASE) diff --git a/manage.py b/manage.py index 05e9f36..0d68061 100644 --- a/manage.py +++ b/manage.py @@ -36,7 +36,7 @@ def serve_client(): @background -def run_bg_checks() -> None: +def bg_run_setup() -> None: run_setup() run_periodic_checks() @@ -49,7 +49,7 @@ def start_watchdog(): if __name__ == "__main__": HandleArgs() log_startup_info() - run_bg_checks() + bg_run_setup() start_watchdog() app.run(