Skip to content

Commit 26fdfbb

Browse files
authored
Avoids "filter" option in tarfile (#419)
1 parent 2ed7d56 commit 26fdfbb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jupyter_scheduler/job_files_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def download_tar(self, archive_format: str = "tar"):
6666

6767
with fsspec.open(archive_filepath) as f:
6868
with tarfile.open(fileobj=f, mode=read_mode) as tar:
69-
tar.extractall(self.output_dir, filter="data")
69+
tar.extractall(self.output_dir)
7070

7171
def download(self):
7272
# ensure presence of staging paths

0 commit comments

Comments
 (0)