mirror of
https://github.com/radio95-rnt/RadioPlayer.git
synced 2026-07-29 23:39:15 +02:00
9 lines
253 B
Python
9 lines
253 B
Python
from . import PlaylistModifierModule, Track
|
|
|
|
class Module(PlaylistModifierModule):
|
|
def modify(self, global_args: dict, playlist: list[Track]) -> list[Track] | None:
|
|
playlist[0].fade_in = 0
|
|
return playlist
|
|
|
|
playlistmod = Module(), -1
|