File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1010 - id : name-tests-test
1111 - id : requirements-txt-fixer
1212- repo : https://github.com/asottile/reorder-python-imports
13- rev : v3.13 .0
13+ rev : v3.14 .0
1414 hooks :
1515 - id : reorder-python-imports
1616 args : [--py311-plus, --add-import, 'from __future__ import annotations']
1919 hooks :
2020 - id : add-trailing-comma
2121- repo : https://github.com/asottile/pyupgrade
22- rev : v3.17 .0
22+ rev : v3.18 .0
2323 hooks :
2424 - id : pyupgrade
2525 args : [--py311-plus]
3232 hooks :
3333 - id : flake8
3434- repo : https://github.com/pre-commit/mirrors-mypy
35- rev : v1.11.2
35+ rev : v1.12.1
3636 hooks :
3737 - id : mypy
Original file line number Diff line number Diff line change @@ -55,8 +55,7 @@ def main() -> int:
5555
5656 local_tgz = os .path .join (args .dest , 'local.tgz' )
5757 with gzip .GzipFile (local_tgz , 'wb' , mtime = 0 ) as gzipf :
58- # https://github.com/python/typeshed/issues/5491
59- with tarfile .open (fileobj = gzipf , mode = 'w' ) as tf : # type:ignore
58+ with tarfile .open (fileobj = gzipf , mode = 'w' ) as tf :
6059 for arcname , abspath in arcs :
6160 tf .add (
6261 abspath ,
You can’t perform that action at this time.
0 commit comments