mirror of
https://github.com/tcsenpai/swingmusic.git
synced 2025-06-07 11:45:35 +00:00
remove print
This commit is contained in:
parent
509c22c736
commit
146ea4ab4d
@ -279,7 +279,6 @@ def parse_feat_from_title(title: str) -> tuple[list[str], str]:
|
|||||||
|
|
||||||
artists = match.group(1)
|
artists = match.group(1)
|
||||||
artists = split_artists(artists, with_and=True)
|
artists = split_artists(artists, with_and=True)
|
||||||
print(artists)
|
|
||||||
|
|
||||||
# remove "feat" group from title
|
# remove "feat" group from title
|
||||||
new_title = re.sub(regex, "", title, flags=re.IGNORECASE)
|
new_title = re.sub(regex, "", title, flags=re.IGNORECASE)
|
||||||
|
@ -36,7 +36,7 @@ def serve_client():
|
|||||||
|
|
||||||
|
|
||||||
@background
|
@background
|
||||||
def run_bg_checks() -> None:
|
def bg_run_setup() -> None:
|
||||||
run_setup()
|
run_setup()
|
||||||
run_periodic_checks()
|
run_periodic_checks()
|
||||||
|
|
||||||
@ -49,7 +49,7 @@ def start_watchdog():
|
|||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
HandleArgs()
|
HandleArgs()
|
||||||
log_startup_info()
|
log_startup_info()
|
||||||
run_bg_checks()
|
bg_run_setup()
|
||||||
start_watchdog()
|
start_watchdog()
|
||||||
|
|
||||||
app.run(
|
app.run(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user