From 9bbc68793fc9df3e54ea47df3a46a2ffb53329bf Mon Sep 17 00:00:00 2001 From: Jonathon Reinhart Date: Sun, 14 Jan 2024 01:29:22 -0500 Subject: [PATCH] staticx: Remove redundant ArchiveError type in extract.py --- staticx/extract.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/staticx/extract.py b/staticx/extract.py index 716cd1f..77359f6 100755 --- a/staticx/extract.py +++ b/staticx/extract.py @@ -4,10 +4,9 @@ from .constants import * from .elf import * +from .errors import ArchiveError from .utils import * -class ArchiveError(Exception): - pass def open_archive(archive): f = NamedTemporaryFile(prefix='staticx-archive-', suffix='.tar')