Skip to content

Commit

Permalink
docs: 📝 update docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
martonvago committed Jan 21, 2025
1 parent 14d5376 commit 7335c8b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def check_package_properties(properties: dict, check_required=True) -> dict:
`properties` if all checks pass.
Raises:
ExceptionGroup: A group of `CheckError`s, one for each check that failed.
ExceptionGroup: A group of `CheckError`s, one error per failed check.
"""
errors = checks.check_package_properties(properties)

Expand Down
2 changes: 1 addition & 1 deletion seedcase_sprout/core/sprout_checks/check_properties.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def check_properties(properties: dict, check_required=True) -> dict:
`properties`, if all checks pass.
Raises:
ExceptionGroup: A group of `CheckError`s, one for each check that failed.
ExceptionGroup: A group of `CheckError`s, one error per failed check.
"""
errors = checks.check_properties(properties)
errors = exclude_non_sprout_resource_errors(errors)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def check_resource_properties(properties: dict, check_required: bool = True) ->
`properties`, if all checks passed.
Raises:
ExceptionGroup: A group of `CheckError`s, one for each check that failed.
ExceptionGroup: A group of `CheckError`s, one error per failed check.
"""
errors = checks.check_resource_properties(properties)
errors = exclude_non_sprout_resource_errors(errors)
Expand Down

0 comments on commit 7335c8b

Please sign in to comment.