From d33bfa31d45e52f619b2683ff5f9fd25dcc0b18b Mon Sep 17 00:00:00 2001 From: Brian Potchik Date: Wed, 29 Oct 2025 23:00:54 -0400 Subject: Fix docstring. --- python/transform.py | 7 ------- 1 file changed, 7 deletions(-) (limited to 'python/transform.py') diff --git a/python/transform.py b/python/transform.py index 54827efc..35fa8f68 100644 --- a/python/transform.py +++ b/python/transform.py @@ -867,13 +867,6 @@ class ZipPython(Transform): return None def perform_decode_with_context(self, context, params) -> bool: - """ - ``perform_decode_with_context`` implements context-aware ZIP extraction. - Two-phase flow: - - Phase 1 (discovery): populate available_files, return False. - - Phase 2 (extraction): for each requested file, create a child context and return - True if all succeeded, False otherwise. - """ try: zf = zipfile.ZipFile(io.BytesIO(context.input.read(0, context.input.length)), "r") except Exception: -- cgit v1.3.1