File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 88
99repos :
1010- repo : https://github.com/psf/black
11- rev : 23.10.1
11+ rev : 23.11.0
1212 hooks :
1313 - id : black
1414 args :
3333 - gql[aiohttp]~=3.3.0
3434 - async-lru~=1.0.3
3535- repo : https://github.com/pre-commit/mirrors-mypy
36- rev : v1.6 .1
36+ rev : v1.7 .1
3737 hooks :
3838 - id : mypy
3939 additional_dependencies :
Original file line number Diff line number Diff line change @@ -324,13 +324,13 @@ async def search(
324324 if not amount :
325325 return sorted (
326326 search_entries ,
327- key = lambda entry : self ._sort_key (entry , search_query ), # type: ignore
327+ key = lambda entry : self ._sort_key (entry , search_query ),
328328 reverse = True ,
329329 )
330330 return heapq .nlargest (
331331 amount ,
332332 search_entries ,
333- key = lambda entry : self ._sort_key (entry , search_query ), # type: ignore[arg-type]
333+ key = lambda entry : self ._sort_key (entry , search_query ),
334334 )
335335
336336 @alru_cache (maxsize = 64 ) # type: ignore[misc]
You can’t perform that action at this time.
0 commit comments