Skip to content
Snippets Groups Projects
Commit 80d20e5e authored by Konrad Mohrfeldt's avatar Konrad Mohrfeldt :koala:
Browse files

chore: remove unused types

parent 9009a76c
No related branches found
No related tags found
No related merge requests found
from typing import Literal, NotRequired, TypedDict
class NestedTimeslot(TypedDict):
end: str
id: int | None
is_virtual: bool
memo: str
playlist_id: int | None
repetition_of_id: int | None
start: str
class NestedShow(TypedDict):
default_playlist_id: int | None
id: int
name: str
class NestedSchedule(TypedDict):
id: int | None
default_playlist_id: int | None
class NestedEpisode(TypedDict):
id: int | None
title: str
class DayScheduleEntry(TypedDict):
episode: NestedEpisode
timeslot: NestedTimeslot
show: NestedShow
class TimerangeEntry(TypedDict):
episode: NestedEpisode
schedule: NestedSchedule | None
show: NestedShow
timeslot: NestedTimeslot
class Thumbnail(TypedDict):
width: float
height: float
url: str
class RadioCBASettings(TypedDict):
api_key: NotRequired[str]
domains: list[str]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment