From 4ae74b3a1df62c572b51d0779813f1bc75c8f043 Mon Sep 17 00:00:00 2001 From: Mila Page Date: Thu, 7 Dec 2023 23:38:20 -0800 Subject: [PATCH] Add type: ignore to get passing. --- dbt/adapters/redshift/connections.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dbt/adapters/redshift/connections.py b/dbt/adapters/redshift/connections.py index 14517d3ac..a40152d1c 100644 --- a/dbt/adapters/redshift/connections.py +++ b/dbt/adapters/redshift/connections.py @@ -40,7 +40,7 @@ class RedshiftConnectionMethod(StrEnum): @dataclass class RedshiftCredentials(PostgresCredentials): method: str = RedshiftConnectionMethod.DATABASE # type: ignore - password: Optional[str] = None # asdf + password: Optional[str] = None # type: ignore cluster_id: Optional[str] = field( default=None, metadata={"description": "If using IAM auth, the name of the cluster"},