Skip to content

Commit 0de4c80

Browse files
committed
remove unused type ignore
1 parent 46de4da commit 0de4c80

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

testing/make-archives

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,7 @@ def make_archive(name: str, repo: str, ref: str, destdir: str) -> str:
5757
arcs.sort()
5858

5959
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
60+
with tarfile.open(fileobj=gzipf, mode='w') as tf:
6261
for arcname, abspath in arcs:
6362
tf.add(
6463
abspath,

0 commit comments

Comments
 (0)