Skip to content

Commit

Permalink
Add type: ignore to get passing.
Browse files Browse the repository at this point in the history
  • Loading branch information
VersusFacit committed Dec 8, 2023
1 parent 2c80d51 commit 4ae74b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dbt/adapters/redshift/connections.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"},
Expand Down

0 comments on commit 4ae74b3

Please sign in to comment.