Skip to content

Commit 9d18d70

Browse files
MaxymVlasovwebknjazyermulnik
authored
Apply suggestions from code review
Co-authored-by: 🇺🇦 Sviatoslav Sydorenko (Святослав Сидоренко) <[email protected]> Co-authored-by: George L. Yermulnik <[email protected]>
1 parent 35e564f commit 9d18d70

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ repos:
6161

6262
# JSON5 Linter
6363
- repo: https://github.com/pre-commit/mirrors-prettier
64-
rev: v4.0.0-alpha.8
64+
rev: v3.1.0
6565
hooks:
6666
- id: prettier
6767
# https://prettier.io/docs/en/options.html#parser

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ classifiers = [
1414
'Programming Language :: Python :: Implementation :: CPython',
1515
'Programming Language :: Python :: Implementation :: PyPy',
1616
]
17-
description='Pre-commit hooks for terraform'
17+
description = 'Pre-commit hooks for Terraform'
1818
dependencies = []
1919
dynamic = [
2020
'urls',

src/pre_commit_terraform/_cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def invoke_cli_app(cli_args: list[str]) -> ReturnCodeType:
2626
raise
2727
except PreCommitTerraformRuntimeError as unhandled_exc:
2828
print(
29-
f'App execution took an unexpected turn: {unhandled_exc !s}. ' 'Exiting...',
29+
f'App execution took an unexpected turn: {unhandled_exc !s}. Exiting...',
3030
file=stderr,
3131
)
3232
return ReturnCode.ERROR

0 commit comments

Comments
 (0)