We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d524049 commit b99a25eCopy full SHA for b99a25e
src/appose/util/download.py
@@ -193,7 +193,7 @@ def un_tar(input_file: Path, output_dir: Path) -> None:
193
output_dir.mkdir(parents=True, exist_ok=True)
194
195
with tarfile.open(input_file, "r") as tar:
196
- tar.extractall(path=output_dir, filter="data")
+ tar.extractall(path=output_dir)
197
198
199
def un_tar_gz(input_file: Path, output_dir: Path) -> None:
@@ -214,7 +214,7 @@ def un_tar_gz(input_file: Path, output_dir: Path) -> None:
214
215
216
with tarfile.open(input_file, "r:gz") as tar:
217
218
219
220
def un_tar_bz2(input_file: Path, output_dir: Path) -> None:
0 commit comments