File tree Expand file tree Collapse file tree 3 files changed +3
-6
lines changed Expand file tree Collapse file tree 3 files changed +3
-6
lines changed Original file line number Diff line number Diff line change 5
5
6
6
repos :
7
7
- repo : https://github.com/python-jsonschema/check-jsonschema.git
8
- rev : 0.30.0
8
+ rev : 0.32.1
9
9
hooks :
10
10
- id : check-github-workflows
11
11
files : ^\.github/workflows/[^/]+$
@@ -23,14 +23,14 @@ repos:
23
23
- id : check-readthedocs
24
24
25
25
- repo : https://github.com/adrienverge/yamllint.git
26
- rev : v1.35.1
26
+ rev : v1.37.0
27
27
hooks :
28
28
- id : yamllint
29
29
args :
30
30
- --strict
31
31
32
32
- repo : https://github.com/PyCQA/flake8.git
33
- rev : 7.1.1
33
+ rev : 7.2.0
34
34
hooks :
35
35
- id : flake8
36
36
alias : flake8-no-wps
Original file line number Diff line number Diff line change @@ -56,7 +56,6 @@ def __init__(self) -> None:
56
56
self .incr_version ()
57
57
58
58
def incr_version (self ) -> None :
59
- global _version
60
59
v = _version
61
60
v [0 ] += 1
62
61
self ._version = v [0 ]
Original file line number Diff line number Diff line change @@ -39,8 +39,6 @@ def chained_call(
39
39
* args : object ,
40
40
** kwargs : object ,
41
41
) -> MultiMapping [int | str ] | MutableMultiMapping [int | str ]:
42
- nonlocal callables
43
-
44
42
callable_chain = (getattr (module , name ) for name in callables )
45
43
first_callable = next (callable_chain )
46
44
You can’t perform that action at this time.
0 commit comments