From fca6272d0958aaa4003c67fca74a92a07f581c4d Mon Sep 17 00:00:00 2001 From: "geo-ghci-int[bot]" <146321879+geo-ghci-int[bot]@users.noreply.github.com> Date: Fri, 13 Dec 2024 16:03:09 +0000 Subject: [PATCH] Apply pre-commit fix From the artifact of the previous workflow run --- tilecloud_chain/configuration.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tilecloud_chain/configuration.py b/tilecloud_chain/configuration.py index 2cc867b0e..abb70a555 100644 --- a/tilecloud_chain/configuration.py +++ b/tilecloud_chain/configuration.py @@ -909,7 +909,7 @@ class Generation(TypedDict, total=False): """ -GithubAccess = Union[Literal["push"], Literal["pull"], Literal["admin"]] +GithubAccess = Literal["push"] | Literal["pull"] | Literal["admin"] """ GitHub access. @@ -1534,7 +1534,7 @@ class LayerMapnik(TypedDict, total=False): """ -LayerMinResolutionSeed = Union[int, float] +LayerMinResolutionSeed = int | float """ layer min resolution seed. @@ -1878,7 +1878,7 @@ class Logging(TypedDict, total=False): """ Default value of the field path 'Layer cost metatile_generation_time' """ -MatrixIdentifier = Union[Literal["zoom"], Literal["resolution"]] +MatrixIdentifier = Literal["zoom"] | Literal["resolution"] """ Matrix identifier. @@ -2012,7 +2012,7 @@ class Openlayers(TypedDict, total=False): """ -OutputFormat = Union[Literal["png"], Literal["png256"], Literal["jpeg"], Literal["grid"]] +OutputFormat = Literal["png"] | Literal["png256"] | Literal["jpeg"] | Literal["grid"] """ Output format. @@ -2137,7 +2137,7 @@ class Provider(TypedDict, total=False): """ Default value of the field path 'TileCloud-chain configuration queue_store' """ -QueueStore = Union[Literal["redis"], Literal["sqs"], Literal["postgresql"]] +QueueStore = Literal["redis"] | Literal["sqs"] | Literal["postgresql"] """ Queue store. @@ -2404,7 +2404,7 @@ class S3Cost(TypedDict, total=False): """ -SentinelPort = Union[str, int] +SentinelPort = str | int """ Sentinel port.