commit:     d51fa4ec5812e38af23ec773b0376d33e2b228ae
Author:     Mike Frysinger <vapier <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 26 17:13:07 2020 +0000
Commit:     Mike Frysinger <vapier <AT> gentoo <DOT> org>
CommitDate: Thu Dec 14 20:20:06 2023 +0000
URL:        https://gitweb.gentoo.org/proj/pax-utils.git/commit/?id=d51fa4ec

lddtree: add docstring for all classes

Signed-off-by: Mike Frysinger <vapier <AT> gentoo.org>

 lddtree.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/lddtree.py b/lddtree.py
index e851ac1..60f3a7c 100755
--- a/lddtree.py
+++ b/lddtree.py
@@ -596,6 +596,8 @@ def ParseELF(
 
 
 class _NormalizePathAction(argparse.Action):
+    """Argparse action to normalize paths."""
+
     def __call__(self, parser, namespace, values, option_string=None):
         setattr(namespace, self.dest, normpath(values))
 

Reply via email to