Migrated links, lyrics and properties

This commit is contained in:
marc
2025-03-23 21:46:04 +01:00
parent c097811e40
commit d596861a2e
47 changed files with 1403 additions and 844 deletions

View File

@@ -3,4 +3,4 @@ from typing import TypeVar
T = TypeVar("T")
ListOrValue = T | list[T]
OptionalListOrValue = ListOrValue[T] | None
OptionalListOrValue = T | list[T] | None