From a5901d3bf0934f4aca86e6846d41359dfdee5289 Mon Sep 17 00:00:00 2001 From: Benex254 Date: Mon, 5 Aug 2024 09:47:03 +0300 Subject: [PATCH] feat(mpv): add typing for mpv title option --- fastanime/cli/utils/mpv.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fastanime/cli/utils/mpv.py b/fastanime/cli/utils/mpv.py index cae98cf..07bd8af 100644 --- a/fastanime/cli/utils/mpv.py +++ b/fastanime/cli/utils/mpv.py @@ -2,7 +2,7 @@ import shutil import subprocess -def mpv(link, title="anime", *custom_args): +def mpv(link, title: None | str = "anime", *custom_args): MPV = shutil.which("mpv") if not MPV: args = [