From 3df6f616535fac2cd2846b55059f63bdc24dadb8 Mon Sep 17 00:00:00 2001 From: Dimitar Kovachev Date: Sat, 23 Nov 2024 22:02:08 +0200 Subject: [PATCH] Remove unused ZipBinary method --- src/python/pants/core/util_rules/system_binaries.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/python/pants/core/util_rules/system_binaries.py b/src/python/pants/core/util_rules/system_binaries.py index bb9e332ce0a..4b3f04bfe9b 100644 --- a/src/python/pants/core/util_rules/system_binaries.py +++ b/src/python/pants/core/util_rules/system_binaries.py @@ -294,10 +294,7 @@ class ArchiveFormat(Enum): class ZipBinary(BinaryPath): - def create_archive_argv( - self, output_filename: str, input_files: Sequence[str] - ) -> tuple[str, ...]: - return (self.path, output_filename, *input_files) + pass class UnzipBinary(BinaryPath):