Skip to content

Commit

Permalink
misc updates
Browse files Browse the repository at this point in the history
  • Loading branch information
cdkini committed Feb 26, 2024
1 parent ee76915 commit 0cb2ef8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1460,8 +1460,8 @@ def add_checkpoint( # noqa: PLR0913
evaluation_parameters: The evaluation parameters to use in generating this checkpoint.
runtime_configuration: The runtime configuration to use in generating this checkpoint.
validations: The validations to use in generating this checkpoint.
id: The GE Cloud ID to use in generating this checkpoint.
expectation_suite_id: The expectation suite GE Cloud ID to use in generating this checkpoint.
id: The ID to use in generating this checkpoint.
expectation_suite_id: The expectation suite ID to use in generating this checkpoint.
default_validation_id: The default validation ID to use in generating this checkpoint.
validator: An existing validator used to generate a validations list.
checkpoint: An existing checkpoint you wish to persist.
Expand Down
3 changes: 3 additions & 0 deletions great_expectations/data_context/store/expectations_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,9 @@ def gx_cloud_response_json_to_object_dict(response_json: Dict) -> Dict:
suite_dict: Dict = suite_data["attributes"]["suite"]
suite_dict["id"] = ge_cloud_suite_id

# Temporary fork to account for pre-V1 configs
suite_dict.pop("ge_cloud_id", None)

return suite_dict

def add_expectation(
Expand Down

0 comments on commit 0cb2ef8

Please sign in to comment.