Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repos:
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.31.3
rev: 0.33.0
hooks:
- id: check-github-workflows
- id: check-dependabot
Expand All @@ -28,13 +28,13 @@ repos:
- id: pyupgrade
args: ["--py37-plus"]
- repo: https://github.com/PyCQA/flake8
rev: 7.1.2
rev: 7.2.0
hooks:
- id: flake8
additional_dependencies:
- 'flake8-bugbear==24.4.26'
- 'flake8-comprehensions==3.14.0'
- 'flake8-typing-as-t==0.0.3'
- 'flake8-bugbear==24.12.12'
- 'flake8-comprehensions==3.16.0'
- 'flake8-typing-as-t==1.0.0'
- repo: https://github.com/sirosen/slyp
rev: 0.8.2
hooks:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@


def test_w_global():
global myglob
global myglob # noqa: F824
assert myglob == 2
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@


def test_w_global():
global myglob
global myglob # noqa: F824
assert myglob == 2