1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-12-27 01:51:24 +00:00
This commit is contained in:
c-basalt
2024-12-28 03:52:00 -05:00
parent a9de401ccd
commit 5d32d72a83
3 changed files with 127 additions and 120 deletions

View File

@@ -113,8 +113,8 @@ class ExternalJSI(JSI, abc.ABC):
return cls._EXE_NAME if cls.version else None
@classproperty
def is_available(self):
return bool(self.exe)
def is_available(cls):
return bool(cls.exe)
@register_jsi