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

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

Loading…
Cancel
Save