From 4eb6c6308a028e4d4d0673c8f2090e74294d6e36 Mon Sep 17 00:00:00 2001 From: Leandro Lucarella Date: Wed, 10 Oct 2007 16:36:11 -0300 Subject: [PATCH] Bugfix: remove unused DictSubHandler attribute. --- pymin/services/util.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pymin/services/util.py b/pymin/services/util.py index 3f50957..bfdba1c 100644 --- a/pymin/services/util.py +++ b/pymin/services/util.py @@ -596,13 +596,11 @@ class DictSubHandler(SubHandler): list and show. """ - def __init__(self, parent, attr=None, key=None, cls=None): + def __init__(self, parent, attr=None, cls=None): r"Initialize the object, see the class documentation for details." self.parent = parent if attr is not None: self._dict_subhandler_attr = attr - if key is not None: - self._dict_subhandler_key = key if cls is not None: self._dict_subhandler_class = cls -- 2.43.0