Reformat code

master
Felix Stupp 1 year ago
parent 2af78f0a81
commit 327919d469
Signed by: zocker
GPG Key ID: 93E1BD26F6B02FB7

@ -4,7 +4,12 @@ from datetime import datetime
from functools import cached_property from functools import cached_property
import itertools import itertools
import math import math
from typing import Literal, Optional, Sequence, TypedDict from typing import (
Literal,
Optional,
Sequence,
TypedDict,
)
import tmdbsimple as tmdb import tmdbsimple as tmdb
@ -96,7 +101,12 @@ class TmdbMovieInfoDict(TypedDict):
release_date: Optional[str] release_date: Optional[str]
runtime: Optional[int] runtime: Optional[int]
status: Literal[ status: Literal[
"Rumored", "Planned", "In Production", "Post Production", "Released", "Canceled" "Rumored",
"Planned",
"In Production",
"Post Production",
"Released",
"Canceled",
] ]
title: str title: str

@ -13,7 +13,10 @@ from typing import (
Union, Union,
) )
from ...models import Tag, TagKey from ...models import (
Tag,
TagKey,
)
from ...models.localization import ( from ...models.localization import (
get_country_tag as get_country_tag_by_code, get_country_tag as get_country_tag_by_code,
get_language_tag, get_language_tag,

Loading…
Cancel
Save