From dbf88d578ed872825ed9c8ce278b91819ee761f5 Mon Sep 17 00:00:00 2001 From: Rudra Tiwari Date: Thu, 4 Dec 2025 15:52:42 +1100 Subject: [PATCH] Add class docstrings to SimpleZipper and SshZipper --- pandaharvester/harvesterzipper/simple_zipper.py | 1 + pandaharvester/harvesterzipper/ssh_zipper.py | 1 + 2 files changed, 2 insertions(+) diff --git a/pandaharvester/harvesterzipper/simple_zipper.py b/pandaharvester/harvesterzipper/simple_zipper.py index ca558ff1..fcdb0344 100644 --- a/pandaharvester/harvesterzipper/simple_zipper.py +++ b/pandaharvester/harvesterzipper/simple_zipper.py @@ -8,6 +8,7 @@ # simple plugin for zipper class SimpleZipper(BaseZipper): + """Simple zipper plugin that zips output files synchronously.""" # constructor def __init__(self, **kwarg): BaseZipper.__init__(self, **kwarg) diff --git a/pandaharvester/harvesterzipper/ssh_zipper.py b/pandaharvester/harvesterzipper/ssh_zipper.py index d0322290..c1ebf806 100644 --- a/pandaharvester/harvesterzipper/ssh_zipper.py +++ b/pandaharvester/harvesterzipper/ssh_zipper.py @@ -8,6 +8,7 @@ # ssh plugin for zipper class SshZipper(BaseZipper): + """SSH zipper plugin that zips output files via SSH connection.""" # constructor def __init__(self, **kwarg): BaseZipper.__init__(self, **kwarg)