mirror of
https://github.com/Benexl/FastAnime.git
synced 2025-12-12 15:50:01 -08:00
fix(mpv): correct order of args
This commit is contained in:
@@ -2,11 +2,7 @@ import shutil
|
||||
import subprocess
|
||||
|
||||
|
||||
def mpv(
|
||||
link,
|
||||
*custom_args,
|
||||
title="anime",
|
||||
):
|
||||
def mpv(link, title="anime", *custom_args):
|
||||
MPV = shutil.which("mpv")
|
||||
if not MPV:
|
||||
args = [
|
||||
|
||||
Reference in New Issue
Block a user