Skip to content

Commit

Permalink
Merge branch 'master' into release-candidate-4.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
alexharv074 committed Jul 9, 2024
2 parents 7e711b2 + a5ee68d commit 8875594
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ repos:
hooks:
- id: yamllint
- repo: https://github.com/awslabs/cfn-python-lint
rev: v1.4.2
rev: v1.5.0
hooks:
- id: cfn-python-lint
args:
Expand Down
2 changes: 1 addition & 1 deletion sceptre/stack.py
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ def is_valid(value: Any) -> bool:

if not isinstance(parameters, dict):
raise InvalidConfigFileError(
f"{self.name}: parameters must be a dictionary of key-value apirs, got {parameters}"
f"{self.name}: parameters must be a dictionary of key-value pairs, got {parameters}"
)

casted_parameters = {k: cast_value(v) for k, v in parameters.items()}
Expand Down

0 comments on commit 8875594

Please sign in to comment.