0
1
mirror of https://github.com/radio95-rnt/RadioPlayer.git synced 2026-02-26 21:53:54 +01:00

this is fucked

This commit is contained in:
Kuba
2025-10-11 17:01:56 +02:00
parent 07a5967919
commit ca3e8522f8
2 changed files with 10 additions and 14 deletions

View File

@@ -1,10 +1,8 @@
from typing import TYPE_CHECKING
if TYPE_CHECKING:
class PlayerModule:
def on_new_playlist(self, playlist: list[tuple[str, bool, bool, bool]]):
pass
def on_new_track(self, index: int, track: str, to_fade_in: bool, to_fade_out: bool, official: bool):
pass
class PlayerModule:
def on_new_playlist(self, playlist: list[tuple[str, bool, bool, bool]]):
pass
def on_new_track(self, index: int, track: str, to_fade_in: bool, to_fade_out: bool, official: bool):
pass
import socket, re, log95, os

View File

@@ -1,10 +1,8 @@
from typing import TYPE_CHECKING
if TYPE_CHECKING:
class PlayerModule:
def on_new_playlist(self, playlist: list[tuple[str, bool, bool, bool]]):
pass
def on_new_track(self, index: int, track: str, to_fade_in: bool, to_fade_out: bool, official: bool):
pass
class PlayerModule:
def on_new_playlist(self, playlist: list[tuple[str, bool, bool, bool]]):
pass
def on_new_track(self, index: int, track: str, to_fade_in: bool, to_fade_out: bool, official: bool):
pass
class Module(PlayerModule):
def __init__(self) -> None: