Skip to content

Commit

Permalink
Apply pre-commit fix
Browse files Browse the repository at this point in the history
From the artifact of the previous workflow run
  • Loading branch information
geo-ghci-int[bot] committed Dec 13, 2024
1 parent 67027ce commit fca6272
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tilecloud_chain/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -1534,7 +1534,7 @@ class LayerMapnik(TypedDict, total=False):
"""


LayerMinResolutionSeed = Union[int, float]
LayerMinResolutionSeed = int | float
"""
layer min resolution seed.
Expand Down Expand Up @@ -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.
Expand Down Expand Up @@ -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.
Expand Down Expand Up @@ -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.
Expand Down Expand Up @@ -2404,7 +2404,7 @@ class S3Cost(TypedDict, total=False):
"""


SentinelPort = Union[str, int]
SentinelPort = str | int
"""
Sentinel port.
Expand Down

0 comments on commit fca6272

Please sign in to comment.