We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46de4da commit 0de4c80Copy full SHA for 0de4c80
1 file changed
testing/make-archives
@@ -57,8 +57,7 @@ def make_archive(name: str, repo: str, ref: str, destdir: str) -> str:
57
arcs.sort()
58
59
with gzip.GzipFile(output_path, 'wb', mtime=0) as gzipf:
60
- # https://github.com/python/typeshed/issues/5491
61
- with tarfile.open(fileobj=gzipf, mode='w') as tf: # type: ignore
+ with tarfile.open(fileobj=gzipf, mode='w') as tf:
62
for arcname, abspath in arcs:
63
tf.add(
64
abspath,
0 commit comments