Skip to content

Commit

Permalink
Merge pull request #934 from pytest-dev/pre-commit-ci-update-config
Browse files Browse the repository at this point in the history
[pre-commit.ci] pre-commit autoupdate
  • Loading branch information
nicoddemus committed Aug 2, 2023
2 parents 6f0cb26 + 17da7cb commit bfd28ff
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ repos:
- id: check-yaml
- id: debug-statements
- repo: https://github.com/PyCQA/flake8
rev: 6.0.0
rev: 6.1.0
hooks:
- id: flake8
- repo: https://github.com/asottile/pyupgrade
rev: v3.9.0
rev: v3.10.1
hooks:
- id: pyupgrade
args: [--py3-plus]
Expand Down
2 changes: 1 addition & 1 deletion testing/test_workermanage.py
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ class MyWarning2(UserWarning):
v1 = getattr(w_msg, k)
v2 = getattr(w_msg2, k)
if k == "message":
assert type(v1) == type(v2)
assert type(v1) is type(v2)
assert v1.args == v2.args
else:
assert v1 == v2
Expand Down

0 comments on commit bfd28ff

Please sign in to comment.