Skip to content

Commit 6ebc271

Browse files
committed
trailing wsp
1 parent a63c909 commit 6ebc271

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

integration_tests/cdk/config.py

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ class AppConfig(BaseSettings):
1414
stage: str = pydantic.Field(description="Stage of deployment", default="test")
1515
# because of its validator, `tags` should always come after `project_id` and `stage`
1616
tags: Dict[str, str] | None = pydantic.Field(
17-
description="""Tags to apply to resources. If none provided,
17+
description="""Tags to apply to resources. If none provided,
1818
will default to the defaults defined in `default_tags`.
19-
Note that if tags are passed to the CDK CLI via `--tags`,
19+
Note that if tags are passed to the CDK CLI via `--tags`,
2020
they will override any tags defined here.""",
2121
default=None,
2222
)
2323
auth_provider_jwks_url: str | None = pydantic.Field(
2424
description="""Auth Provider JSON Web Key Set URL for
25-
ingestion authentication. If not provided,
25+
ingestion authentication. If not provided,
2626
no authentication will be required.""",
2727
default=None,
2828
)
@@ -51,8 +51,8 @@ class AppConfig(BaseSettings):
5151
default=0,
5252
)
5353
bastion_host: bool = pydantic.Field(
54-
description="""Whether to create a bastion host. It can typically
55-
be used to make administrative connections to the database if
54+
description="""Whether to create a bastion host. It can typically
55+
be used to make administrative connections to the database if
5656
`public_db_subnet` is False""",
5757
default=False,
5858
)
@@ -62,7 +62,7 @@ class AppConfig(BaseSettings):
6262
default=False,
6363
)
6464
bastion_host_allow_ip_list: List[str] = pydantic.Field(
65-
description="""YAML file containing list of IP addresses to
65+
description="""YAML file containing list of IP addresses to
6666
allow SSH access to the bastion host. Ignored if `bastion_host`
6767
equals `False`.""",
6868
default=[],
@@ -78,18 +78,18 @@ class AppConfig(BaseSettings):
7878
default=[],
7979
)
8080
acm_certificate_arn: str | None = pydantic.Field(
81-
description="""ARN of ACM certificate to use for
81+
description="""ARN of ACM certificate to use for
8282
custom domain names. If provided,
8383
CDNs are created for all the APIs""",
8484
default=None,
8585
)
8686
stac_api_custom_domain: str | None = pydantic.Field(
87-
description="""Custom domain name for the STAC API.
87+
description="""Custom domain name for the STAC API.
8888
Must provide `acm_certificate_arn`""",
8989
default=None,
9090
)
9191
titiler_pgstac_api_custom_domain: str | None = pydantic.Field(
92-
description="""Custom domain name for the titiler pgstac API.
92+
description="""Custom domain name for the titiler pgstac API.
9393
Must provide `acm_certificate_arn`""",
9494
default=None,
9595
)
@@ -99,7 +99,7 @@ class AppConfig(BaseSettings):
9999
default=None,
100100
)
101101
tipg_api_custom_domain: str | None = pydantic.Field(
102-
description="""Custom domain name for the tipg API.
102+
description="""Custom domain name for the tipg API.
103103
Must provide `acm_certificate_arn`""",
104104
default=None,
105105
)
@@ -136,7 +136,7 @@ def validate_stac_browser_version(self) -> "AppConfig":
136136
and self.stac_api_custom_domain is None
137137
):
138138
raise ValueError(
139-
"""If a STAC browser version is provided,
139+
"""If a STAC browser version is provided,
140140
a custom domain must be provided for the STAC API"""
141141
)
142142
else:
@@ -153,7 +153,7 @@ def validate_acm_certificate_arn(self) -> "AppConfig":
153153
]
154154
):
155155
raise ValueError(
156-
"""If any custom domain is provided,
156+
"""If any custom domain is provided,
157157
an ACM certificate ARN must be provided"""
158158
)
159159
else:

0 commit comments

Comments
 (0)