Skip to content

Commit

Permalink
Update links in blocks to not point to docs from archived repositories (
Browse files Browse the repository at this point in the history
  • Loading branch information
discdiver authored Nov 15, 2024
1 parent c87003f commit 773f15a
Show file tree
Hide file tree
Showing 37 changed files with 66 additions and 72 deletions.
6 changes: 1 addition & 5 deletions src/integrations/prefect-aws/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<img src="https://img.shields.io/pypi/dm/prefect-aws?color=26272B&labelColor=090422" /></a>
</p>

## Welcome!
## Welcome

`prefect-aws` makes it easy to leverage the capabilities of AWS in your flows, featuring support for ECS, S3, Secrets Manager, and Batch.

Expand All @@ -18,7 +18,3 @@ To start using `prefect-aws`:
```bash
pip install prefect-aws
```

### Contributing

Thanks for thinking about chipping in! Check out this [step-by-step guide](https://prefecthq.github.io/prefect-aws/#installation) on how to get started.
4 changes: 2 additions & 2 deletions src/integrations/prefect-aws/prefect_aws/credentials.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ class AwsCredentials(CredentialsBlock):

_logo_url = "https://cdn.sanity.io/images/3ugk85nk/production/d74b16fe84ce626345adf235a47008fea2869a60-225x225.png" # noqa
_block_type_name = "AWS Credentials"
_documentation_url = "https://prefecthq.github.io/prefect-aws/credentials/#prefect_aws.credentials.AwsCredentials" # noqa
_documentation_url = "https://docs.prefect.io/integrations/prefect-aws" # noqa

aws_access_key_id: Optional[str] = Field(
default=None,
Expand Down Expand Up @@ -209,7 +209,7 @@ class MinIOCredentials(CredentialsBlock):
"docs: https://docs.min.io/docs/minio-server-configuration-guide.html "
"for more info about the possible credential configurations."
)
_documentation_url = "https://prefecthq.github.io/prefect-aws/credentials/#prefect_aws.credentials.MinIOCredentials" # noqa
_documentation_url = "https://docs.prefect.io/integrations/prefect-aws" # noqa

minio_root_user: str = Field(default=..., description="Admin or root user.")
minio_root_password: SecretStr = Field(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class LambdaFunction(Block):

_block_type_name = "Lambda Function"
_logo_url = "https://cdn.sanity.io/images/3ugk85nk/production/d74b16fe84ce626345adf235a47008fea2869a60-225x225.png" # noqa
_documentation_url = "https://prefecthq.github.io/prefect-aws/s3/#prefect_aws.lambda_function.LambdaFunction" # noqa
_documentation_url = "https://docs.prefect.io/integrations/prefect-aws" # noqa

function_name: str = Field(
title="Function Name",
Expand Down
4 changes: 1 addition & 3 deletions src/integrations/prefect-aws/prefect_aws/s3.py
Original file line number Diff line number Diff line change
Expand Up @@ -403,9 +403,7 @@ class S3Bucket(WritableFileSystem, WritableDeploymentStorage, ObjectStorageBlock

_logo_url = "https://cdn.sanity.io/images/3ugk85nk/production/d74b16fe84ce626345adf235a47008fea2869a60-225x225.png" # noqa
_block_type_name = "S3 Bucket"
_documentation_url = (
"https://prefecthq.github.io/prefect-aws/s3/#prefect_aws.s3.S3Bucket" # noqa
)
_documentation_url = "https://docs.prefect.io/integrations/prefect-aws" # noqa

bucket_name: str = Field(default=..., description="Name of your bucket.")

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ class AwsSecret(SecretBlock):

_logo_url = "https://cdn.sanity.io/images/3ugk85nk/production/d74b16fe84ce626345adf235a47008fea2869a60-225x225.png" # noqa
_block_type_name = "AWS Secret"
_documentation_url = "https://prefecthq.github.io/prefect-aws/secrets_manager/#prefect_aws.secrets_manager.AwsSecret" # noqa
_documentation_url = "https://docs.prefect.io/integrations/prefect-aws" # noqa

aws_credentials: AwsCredentials
secret_name: str = Field(default=..., description="The name of the secret.")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -654,7 +654,7 @@ class ECSWorker(BaseWorker):
"and Fargate clusters. Requires an AWS account."
)
_display_name = "AWS Elastic Container Service"
_documentation_url = "https://prefecthq.github.io/prefect-aws/ecs_worker/"
_documentation_url = "https://docs.prefect.io/integrations/prefect-aws/"
_logo_url = "https://cdn.sanity.io/images/3ugk85nk/production/d74b16fe84ce626345adf235a47008fea2869a60-225x225.png" # noqa

async def run(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ class AzureBlobStorageContainer(

_block_type_name = "Azure Blob Storage Container"
_logo_url = "https://cdn.sanity.io/images/3ugk85nk/production/54e3fa7e00197a4fbd1d82ed62494cb58d08c96a-250x250.png" # noqa
_documentation_url = "https://prefecthq.github.io/prefect-azure/blob_storage/#prefect_azure.blob_storabe.AzureBlobStorageContainer" # noqa
_documentation_url = "https://docs.prefect.io/integrations/prefect-azure" # noqa

container_name: str = Field(
default=..., description="The name of a Azure Blob Storage container."
Expand Down
8 changes: 4 additions & 4 deletions src/integrations/prefect-azure/prefect_azure/credentials.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ class AzureBlobStorageCredentials(Block):

_block_type_name = "Azure Blob Storage Credentials"
_logo_url = "https://cdn.sanity.io/images/3ugk85nk/production/54e3fa7e00197a4fbd1d82ed62494cb58d08c96a-250x250.png" # noqa
_documentation_url = "https://prefecthq.github.io/prefect-azure/credentials/#prefect_azure.credentials.AzureBlobStorageCredentials" # noqa
_documentation_url = "https://docs.prefect.io/integrations/prefect-azure" # noqa

connection_string: Optional[SecretStr] = Field(
default=None,
Expand Down Expand Up @@ -281,7 +281,7 @@ class AzureCosmosDbCredentials(Block):

_block_type_name = "Azure Cosmos DB Credentials"
_logo_url = "https://cdn.sanity.io/images/3ugk85nk/production/54e3fa7e00197a4fbd1d82ed62494cb58d08c96a-250x250.png" # noqa
_documentation_url = "https://prefecthq.github.io/prefect-azure/credentials/#prefect_azure.credentials.AzureCosmosDbCredentials" # noqa
_documentation_url = "https://docs.prefect.io/integrations/prefect-azure" # noqa

connection_string: SecretStr = Field(
default=..., description="Includes the authorization information required."
Expand Down Expand Up @@ -401,7 +401,7 @@ class AzureMlCredentials(Block):

_block_type_name = "AzureML Credentials"
_logo_url = "https://cdn.sanity.io/images/3ugk85nk/production/54e3fa7e00197a4fbd1d82ed62494cb58d08c96a-250x250.png" # noqa
_documentation_url = "https://prefecthq.github.io/prefect-azure/credentials/#prefect_azure.credentials.AzureMlCredentials" # noqa
_documentation_url = "https://docs.prefect.io/integrations/prefect-azure" # noqa

tenant_id: str = Field(
default=...,
Expand Down Expand Up @@ -474,7 +474,7 @@ class AzureContainerInstanceCredentials(Block):

_block_type_name = "Azure Container Instance Credentials"
_logo_url = "https://cdn.sanity.io/images/3ugk85nk/production/54e3fa7e00197a4fbd1d82ed62494cb58d08c96a-250x250.png" # noqa
_documentation_url = "https://prefecthq.github.io/prefect-azure/credentials/#prefect_azure.credentials.AzureContainerInstanceCredentials" # noqa
_documentation_url = "https://docs.prefect.io/integrations/prefect-azure" # noqa

client_id: Optional[str] = Field(
default=None,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -526,9 +526,7 @@ class AzureContainerWorker(BaseWorker):
"Execute flow runs within containers on Azure's Container Instances "
"service. Requires an Azure account."
)
_documentation_url = (
"https://prefecthq.github.io/prefect-azure/container_instance_worker/"
)
_documentation_url = "https://docs.prefect.io/integrations/prefect-azure"

async def run(
self,
Expand Down
34 changes: 21 additions & 13 deletions src/integrations/prefect-dbt/prefect_dbt/cli/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ class DbtCoreOperation(ShellOperation):

_block_type_name = "dbt Core Operation"
_logo_url = "https://images.ctfassets.net/gm98wzqotmnx/5zE9lxfzBHjw3tnEup4wWL/9a001902ed43a84c6c96d23b24622e19/dbt-bit_tm.png?h=250" # noqa
_documentation_url = "https://prefecthq.github.io/prefect-dbt/cli/commands/#prefect_dbt.cli.commands.DbtCoreOperation" # noqa
_documentation_url = "https://docs.prefect.io/integrations/prefect-dbt" # noqa

profiles_dir: Optional[Path] = Field(
default=None,
Expand Down Expand Up @@ -929,9 +929,11 @@ def _create_unsuccessful_markdown(run_results: dict) -> str:
n.node.resource_type,
n.message,
n.node.path,
n.node.compiled_code
if n.node.resource_type not in ["seed", "source"]
else None,
(
n.node.compiled_code
if n.node.resource_type not in ["seed", "source"]
else None
),
)
if len(run_results["Fail"]) > 0:
markdown += "\n### Failed Nodes:\n"
Expand All @@ -941,9 +943,11 @@ def _create_unsuccessful_markdown(run_results: dict) -> str:
n.node.resource_type,
n.message,
n.node.path,
n.node.compiled_code
if n.node.resource_type not in ["seed", "source"]
else None,
(
n.node.compiled_code
if n.node.resource_type not in ["seed", "source"]
else None
),
)
if len(run_results["Skipped"]) > 0:
markdown += "\n### Skipped Nodes:\n"
Expand All @@ -953,9 +957,11 @@ def _create_unsuccessful_markdown(run_results: dict) -> str:
n.node.resource_type,
n.message,
n.node.path,
n.node.compiled_code
if n.node.resource_type not in ["seed", "source"]
else None,
(
n.node.compiled_code
if n.node.resource_type not in ["seed", "source"]
else None
),
)
if len(run_results["Warn"]) > 0:
markdown += "\n### Warned Nodes:\n"
Expand All @@ -965,9 +971,11 @@ def _create_unsuccessful_markdown(run_results: dict) -> str:
n.node.resource_type,
n.message,
n.node.path,
n.node.compiled_code
if n.node.resource_type not in ["seed", "source"]
else None,
(
n.node.compiled_code
if n.node.resource_type not in ["seed", "source"]
else None
),
)
return markdown

Expand Down
6 changes: 3 additions & 3 deletions src/integrations/prefect-dbt/prefect_dbt/cli/configs/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class DbtConfigs(Block, abc.ABC):
"fields provided in extras and credentials."
),
)
_documentation_url = "https://prefecthq.github.io/prefect-dbt/cli/configs/base/#prefect_dbt.cli.configs.base.DbtConfigs" # noqa
_documentation_url = "https://docs.prefect.io/integrations/prefect-dbt" # noqa

def _populate_configs_json(
self,
Expand Down Expand Up @@ -145,7 +145,7 @@ class TargetConfigs(BaseTargetConfigs):

_block_type_name = "dbt CLI Target Configs"
_logo_url = "https://images.ctfassets.net/gm98wzqotmnx/5zE9lxfzBHjw3tnEup4wWL/9a001902ed43a84c6c96d23b24622e19/dbt-bit_tm.png?h=250" # noqa
_documentation_url = "https://prefecthq.github.io/prefect-dbt/cli/configs/base/#prefect_dbt.cli.configs.base.TargetConfigs" # noqa
_documentation_url = "https://docs.prefect.io/integrations/prefect-dbt" # noqa


class GlobalConfigs(DbtConfigs):
Expand Down Expand Up @@ -189,7 +189,7 @@ class GlobalConfigs(DbtConfigs):

_block_type_name = "dbt CLI Global Configs"
_logo_url = "https://images.ctfassets.net/gm98wzqotmnx/5zE9lxfzBHjw3tnEup4wWL/9a001902ed43a84c6c96d23b24622e19/dbt-bit_tm.png?h=250" # noqa
_documentation_url = "https://prefecthq.github.io/prefect-dbt/cli/configs/base/#prefect_dbt.cli.configs.base.GlobalConfigs" # noqa
_documentation_url = "https://docs.prefect.io/integrations/prefect-dbt" # noqa

send_anonymous_usage_stats: Optional[bool] = Field(
default=None,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ class BigQueryTargetConfigs(BaseTargetConfigs):
_block_type_name = "dbt CLI BigQuery Target Configs"
_logo_url = "https://images.ctfassets.net/gm98wzqotmnx/5zE9lxfzBHjw3tnEup4wWL/9a001902ed43a84c6c96d23b24622e19/dbt-bit_tm.png?h=250" # noqa
_description = "dbt CLI target configs containing credentials and settings, specific to BigQuery." # noqa
_documentation_url = "https://prefecthq.github.io/prefect-dbt/cli/configs/bigquery/#prefect_dbt.cli.configs.bigquery.BigQueryTargetConfigs" # noqa
_documentation_url = "https://docs.prefect.io/integrations/prefect-dbt" # noqa

type: Literal["bigquery"] = Field(
default="bigquery", description="The type of target."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class PostgresTargetConfigs(BaseTargetConfigs):
_block_type_name = "dbt CLI Postgres Target Configs"
_logo_url = "https://images.ctfassets.net/gm98wzqotmnx/5zE9lxfzBHjw3tnEup4wWL/9a001902ed43a84c6c96d23b24622e19/dbt-bit_tm.png?h=250" # noqa
_description = "dbt CLI target configs containing credentials and settings specific to Postgres." # noqa
_documentation_url = "https://prefecthq.github.io/prefect-dbt/cli/configs/postgres/#prefect_dbt.cli.configs.postgres.PostgresTargetConfigs" # noqa
_documentation_url = "https://docs.prefect.io/integrations/prefect-dbt" # noqa

type: Literal["postgres"] = Field(
default="postgres", description="The type of the target."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ class SnowflakeTargetConfigs(BaseTargetConfigs):

_block_type_name = "dbt CLI Snowflake Target Configs"
_logo_url = "https://images.ctfassets.net/gm98wzqotmnx/5zE9lxfzBHjw3tnEup4wWL/9a001902ed43a84c6c96d23b24622e19/dbt-bit_tm.png?h=250" # noqa
_documentation_url = "https://prefecthq.github.io/prefect-dbt/cli/configs/snowflake/#prefect_dbt.cli.configs.snowflake.SnowflakeTargetConfigs" # noqa
_documentation_url = "https://docs.prefect.io/integrations/prefect-dbt" # noqa

type: Literal["snowflake"] = Field(
default="snowflake", description="The type of the target configs."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ class DbtCliProfile(Block):

_block_type_name = "dbt CLI Profile"
_logo_url = "https://images.ctfassets.net/gm98wzqotmnx/5zE9lxfzBHjw3tnEup4wWL/9a001902ed43a84c6c96d23b24622e19/dbt-bit_tm.png?h=250" # noqa
_documentation_url = "https://prefecthq.github.io/prefect-dbt/cli/credentials/#prefect_dbt.cli.credentials.DbtCliProfile" # noqa
_documentation_url = "https://docs.prefect.io/integrations/prefect-dbt" # noqa

name: str = Field(
default=..., description="Profile name used for populating profiles.yml."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def trigger_dbt_cloud_job_run_flow():

_block_type_name = "dbt Cloud Credentials"
_logo_url = "https://images.ctfassets.net/gm98wzqotmnx/5zE9lxfzBHjw3tnEup4wWL/9a001902ed43a84c6c96d23b24622e19/dbt-bit_tm.png?h=250" # noqa
_documentation_url = "https://prefecthq.github.io/prefect-dbt/cloud/credentials/#prefect_dbt.cloud.credentials.DbtCloudCredentials" # noqa
_documentation_url = "https://docs.prefect.io/integrations/prefect-dbt" # noqa

api_key: SecretStr = Field(
default=...,
Expand Down
2 changes: 1 addition & 1 deletion src/integrations/prefect-dbt/prefect_dbt/cloud/jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -1006,7 +1006,7 @@ def dbt_cloud_job_flow():

_block_type_name = "dbt Cloud Job"
_logo_url = "https://images.ctfassets.net/gm98wzqotmnx/5zE9lxfzBHjw3tnEup4wWL/9a001902ed43a84c6c96d23b24622e19/dbt-bit_tm.png?h=250" # noqa
_documentation_url = "https://prefecthq.github.io/prefect-dbt/cloud/jobs/#prefect_dbt.cloud.jobs.DbtCloudJob" # noqa
_documentation_url = "https://docs.prefect.io/integrations/prefect-dbt" # noqa

dbt_cloud_credentials: DbtCloudCredentials = Field(
default=...,
Expand Down
2 changes: 1 addition & 1 deletion src/integrations/prefect-docker/prefect_docker/worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ class DockerWorker(BaseWorker):
"Docker daemon."
)
_display_name = "Docker"
_documentation_url = "https://prefecthq.github.io/prefect-docker/worker/"
_documentation_url = "https://docs.prefect.io/integrations/prefect-docker"
_logo_url = "https://images.ctfassets.net/gm98wzqotmnx/2IfXXfMq66mrzJBDFFCHTp/6d8f320d9e4fc4393f045673d61ab612/Moby-logo.png?h=250" # noqa

def __init__(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ class EmailServerCredentials(Block):

_block_type_name = "Email Server Credentials"
_logo_url = "https://cdn.sanity.io/images/3ugk85nk/production/82bc6ed16ca42a2252a5512c72233a253b8a58eb-250x250.png" # noqa
_documentation_url = "https://prefecthq.github.io/prefect-email/credentials/#prefect_email.credentials.EmailServerCredentials" # noqa
_documentation_url = "https://docs.prefect.io/integrations/prefect-email" # noqa

username: Optional[str] = Field(
default=None,
Expand Down
10 changes: 2 additions & 8 deletions src/integrations/prefect-gcp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,12 @@

`prefect-gcp` makes it easy to leverage the capabilities of Google Cloud Platform (GCP) in your flows, featuring support for Vertex AI, Cloud Run, BigQuery, Cloud Storage, and Secret Manager.

Visit the full docs [here](https://PrefectHQ.github.io/prefect-gcp).
Visit the full docs [here](https://docs.prefect.io/integrations/prefect-gcp).

### Installation
## Installation

To start using `prefect-gcp`:

```bash
pip install prefect-gcp
```

To install extras, see [here](https://prefecthq.github.io/prefect-gcp/#installation).

### Contributing

Thanks for thinking about chipping in! Check out this [step-by-step guide](https://prefecthq.github.io/prefect-gcp/#installation) on how to get started.
2 changes: 1 addition & 1 deletion src/integrations/prefect-gcp/prefect_gcp/bigquery.py
Original file line number Diff line number Diff line change
Expand Up @@ -560,7 +560,7 @@ class BigQueryWarehouse(DatabaseBlock):

_block_type_name = "BigQuery Warehouse"
_logo_url = "https://cdn.sanity.io/images/3ugk85nk/production/10424e311932e31c477ac2b9ef3d53cefbaad708-250x250.png" # noqa
_documentation_url = "https://prefecthq.github.io/prefect-gcp/bigquery/#prefect_gcp.bigquery.BigQueryWarehouse" # noqa: E501
_documentation_url = "https://docs.prefect.io/integrations/prefect-gcp" # noqa: E501

gcp_credentials: GcpCredentials
fetch_size: int = Field(
Expand Down
2 changes: 1 addition & 1 deletion src/integrations/prefect-gcp/prefect_gcp/cloud_storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -581,7 +581,7 @@ class GcsBucket(WritableDeploymentStorage, WritableFileSystem, ObjectStorageBloc

_logo_url = "https://cdn.sanity.io/images/3ugk85nk/production/10424e311932e31c477ac2b9ef3d53cefbaad708-250x250.png" # noqa
_block_type_name = "GCS Bucket"
_documentation_url = "https://prefecthq.github.io/prefect-gcp/cloud_storage/#prefect_gcp.cloud_storage.GcsBucket" # noqa: E501
_documentation_url = "https://docs.prefect.io/integrations/prefect-gcp" # noqa: E501

bucket: str = Field(..., description="Name of the bucket.")
gcp_credentials: GcpCredentials = Field(
Expand Down
2 changes: 1 addition & 1 deletion src/integrations/prefect-gcp/prefect_gcp/credentials.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ class GcpCredentials(CredentialsBlock):

_logo_url = "https://cdn.sanity.io/images/3ugk85nk/production/10424e311932e31c477ac2b9ef3d53cefbaad708-250x250.png" # noqa
_block_type_name = "GCP Credentials"
_documentation_url = "https://prefecthq.github.io/prefect-gcp/credentials/#prefect_gcp.credentials.GcpCredentials" # noqa: E501
_documentation_url = "https://docs.prefect.io/integrations/prefect-gcp" # noqa: E501

service_account_file: Optional[Path] = Field(
default=None, description="Path to the service account JSON keyfile."
Expand Down
2 changes: 1 addition & 1 deletion src/integrations/prefect-gcp/prefect_gcp/secret_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ class GcpSecret(SecretBlock):
"""

_logo_url = "https://cdn.sanity.io/images/3ugk85nk/production/10424e311932e31c477ac2b9ef3d53cefbaad708-250x250.png" # noqa
_documentation_url = "https://prefecthq.github.io/prefect-gcp/secret_manager/#prefect_gcp.secret_manager.GcpSecret" # noqa: E501
_documentation_url = "https://docs.prefect.io/integrations/prefect-gcp" # noqa: E501

gcp_credentials: GcpCredentials
secret_name: str = Field(default=..., description="Name of the secret to manage.")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -541,7 +541,7 @@ class CloudRunWorker(BaseWorker):
"a Google Cloud Platform account."
)
_display_name = "Google Cloud Run"
_documentation_url = "https://prefecthq.github.io/prefect-gcp/cloud_run_worker/"
_documentation_url = "https://docs.prefect.io/integrations/prefect-gcp"
_logo_url = "https://cdn.sanity.io/images/3ugk85nk/production/10424e311932e31c477ac2b9ef3d53cefbaad708-250x250.png" # noqa

def _create_job_error(self, exc, configuration):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ class CloudRunWorkerV2(BaseWorker):
job_configuration_variables = CloudRunWorkerV2Variables
_description = "Execute flow runs within containers on Google Cloud Run (V2 API). Requires a Google Cloud Platform account." # noqa
_display_name = "Google Cloud Run V2"
_documentation_url = "https://prefecthq.github.io/prefect-gcp/worker_v2/"
_documentation_url = "https://docs.prefect.io/integrations/prefect-gcp"
_logo_url = "https://images.ctfassets.net/gm98wzqotmnx/4SpnOBvMYkHp6z939MDKP6/549a91bc1ce9afd4fb12c68db7b68106/social-icon-google-cloud-1200-630.png?h=250" # noqa

async def run(
Expand Down
Loading

0 comments on commit 773f15a

Please sign in to comment.