Skip to content

Commit

Permalink
fix: #329
Browse files Browse the repository at this point in the history
  • Loading branch information
r3tr0ananas committed Jun 17, 2024
1 parent 04e683a commit 832df96
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion mov_cli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
from .scraper import *
from .download import *

__version__ = "4.4.1"
__version__ = "4.4.2"
6 changes: 4 additions & 2 deletions mov_cli/players/iina.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,17 @@ def __init__(
debug: bool = False,
**kwargs
) -> None:
self.display_name = Colours.GREY.apply("IINA")

super().__init__(
platform = platform,
args = args,
debug = debug,
args_override = args_override
)

@property
def display_name(self):
return Colours.GREY.apply("IINA")

def play(self, media: Media) -> Optional[subprocess.Popen]:
"""Plays this media in the IINA media player for MacOS."""

Expand Down

0 comments on commit 832df96

Please sign in to comment.