gen_day_auto_image doesnt resolve Depends()
This commit is contained in:
parent
a1729d13f7
commit
7951363be8
1 changed files with 3 additions and 3 deletions
|
@ -111,9 +111,9 @@ async def get_all_image_names(
|
||||||
|
|
||||||
async def gen_day_auto_image(
|
async def gen_day_auto_image(
|
||||||
day: int,
|
day: int,
|
||||||
cfg: Config = Depends(get_config),
|
cfg: Config,
|
||||||
auto_image_names: dict[int, str] = Depends(get_all_auto_image_names),
|
auto_image_names: dict[int, str],
|
||||||
day_parts: dict[int, str] = Depends(get_all_parts),
|
day_parts: dict[int, str],
|
||||||
) -> Image.Image:
|
) -> Image.Image:
|
||||||
"""
|
"""
|
||||||
Automatisch generiertes Bild erstellen
|
Automatisch generiertes Bild erstellen
|
||||||
|
|
Loading…
Reference in a new issue