Skip to content

Commit feb7179

Browse files
authored
Merge pull request #219 from pre-commit/upgrade_add_trailing_comma_more
Upgrade pre-commit hooks
2 parents 19b7f0f + b281d87 commit feb7179

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.pre-commit-config.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,20 +13,20 @@
1313
- id: requirements-txt-fixer
1414
- id: flake8
1515
- repo: https://github.com/pre-commit/pre-commit
16-
sha: v0.15.0
16+
sha: v0.15.2
1717
hooks:
1818
- id: validate_config
1919
- id: validate_manifest
2020
- repo: https://github.com/asottile/reorder_python_imports
21-
sha: v0.3.1
21+
sha: v0.3.5
2222
hooks:
2323
- id: reorder-python-imports
2424
language_version: python2.7
2525
- repo: https://github.com/asottile/pyupgrade
26-
sha: v1.1.2
26+
sha: v1.1.3
2727
hooks:
2828
- id: pyupgrade
2929
- repo: https://github.com/asottile/add-trailing-comma
30-
sha: v0.4.1
30+
sha: v0.5.1
3131
hooks:
3232
- id: add-trailing-comma

tests/detect_aws_credentials_test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@
2323
'AWS_DUMMY_KEY': '/foo', 'AWS_CONFIG_FILE': '/bar',
2424
'AWS_CREDENTIAL_FILE': '/baz',
2525
},
26-
{'/bar', '/baz'}
26+
{'/bar', '/baz'},
2727
),
2828
(
2929
{
3030
'AWS_CONFIG_FILE': '/foo', 'AWS_CREDENTIAL_FILE': '/bar',
3131
'AWS_SHARED_CREDENTIALS_FILE': '/baz',
3232
},
33-
{'/foo', '/bar', '/baz'}
33+
{'/foo', '/bar', '/baz'},
3434
),
3535
),
3636
)

0 commit comments

Comments
 (0)