refactor(analyzer): rewrite analyze playability

This commit is contained in:
jo 2022-08-09 15:56:52 +02:00 committed by Kyle Robbertze
parent 04e5a7e404
commit dc30d8836b
2 changed files with 18 additions and 25 deletions

View file

@ -1,4 +1,9 @@
from os import getenv
from ._utils import run_
LIQUIDSOAP = getenv("LIQUIDSOAP_PATH", "liquidsoap")
def _liquidsoap(*args, **kwargs):
return run_(LIQUIDSOAP, *args, **kwargs)