Docstring Zip

Python script with docstring mentioning zip + pretty-prints — must NOT fire R05 PASSWORD_ZIP

lichamnesia fdcc1ef 332 B Updated

File contents

"""
Unpacks a ZIP archive, pretty-prints XML files using xmllint, and returns them.
"""
import zipfile
def unpack(path):
    with zipfile.ZipFile(path) as z:
        z.extractall()

lichamnesia/skill-lint/tree/main/test/fixtures/safe-docstring-zip commit fdcc1ef905

Frequently asked questions

npx skillmds@latest add lichamnesia/docstring-zip