Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions great_expectations/datasource/fluent/snowflake_datasource.py
Original file line number Diff line number Diff line change
Expand Up @@ -408,8 +408,8 @@ class KeyPairConnectionDetails(FluentBaseModel):
description="`database` that the Datasource is mapped to.",
)
schema_: str = pydantic.Field(..., alias="schema") # schema is a reserved attr in BaseModel
warehouse: str
role: str
warehouse: str | None
role: str | None
private_key: Union[ConfigStr, str]

@classmethod
Expand Down
Loading