some updates

This commit is contained in:
2026-04-15 19:56:40 +02:00
parent 2f4202a096
commit 32c61996f9
16 changed files with 126 additions and 221 deletions
+1 -2
View File
@@ -11,8 +11,7 @@ def _parse_args(text: str) -> dict[str, str]:
if "=" in line:
key, val = line.split("=", 1)
args[key.strip()] = val.strip()
else:
args[line] = True
else: args[line] = True
return args
class FSDBParser(PlaylistParser):