File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 41
41
python-version : ' 3.8'
42
42
- run : sudo apt update
43
43
- run : sudo apt install --no-install-recommends -y x11-xserver-utils
44
- - run : pip3 install mypy==1.7.1 flake8==5.0.4 pyright==1.1.381 orjson==3.10.7 --user
44
+ - run : pip3 install mypy==1.7.1 flake8==7.1.1 pyright==1.1.381 orjson==3.10.7 --user
45
45
- run : echo "$HOME/.local/bin" >> $GITHUB_PATH
46
46
- run : mypy stubs
47
47
- run : flake8 plugin tests
Original file line number Diff line number Diff line change @@ -178,7 +178,7 @@ def _show_references_in_quick_panel(
178
178
placeholder = "References to " + word
179
179
kind = get_symbol_kind_from_scope (self .view .scope_name (position ))
180
180
index = 0
181
- locations .sort (key = lambda l : (l ['uri' ], Point .from_lsp (l ['range' ]['start' ])))
181
+ locations .sort (key = lambda location : (location ['uri' ], Point .from_lsp (location ['range' ]['start' ])))
182
182
if len (selection ):
183
183
pt = selection [0 ].b
184
184
view_filename = self .view .file_name ()
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ per-file-ignores =
21
21
[testenv]
22
22
deps =
23
23
mypy ==1.7.1
24
- flake8 ==5.0.4
24
+ flake8 ==7.1.1
25
25
pyright ==1.1.381
26
26
orjson ==3.10.7
27
27
commands =
You can’t perform that action at this time.
0 commit comments