Skip to content

Commit

Permalink
Update docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
roblim committed Sep 20, 2021
1 parent e0995c5 commit d45db73
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion great_expectations/data_context/data_context.py
Original file line number Diff line number Diff line change
Expand Up @@ -2276,7 +2276,10 @@ def get_expectation_suite(
)

def list_expectation_suite_names(self) -> List[str]:
"""Lists the available expectation suite names"""
"""
Lists the available expectation suite names. If in ge_cloud_mode, a list of
GE Cloud ids is returned instead.
"""
if self.ge_cloud_mode:
return [
suite_key.ge_cloud_id for suite_key in self.list_expectation_suites()
Expand Down

0 comments on commit d45db73

Please sign in to comment.