From f54ff7f9c331c1cee26552ffdfa41101f14db8fd Mon Sep 17 00:00:00 2001 From: Daniel Mach Date: Mon, 29 Aug 2022 15:01:30 +0200 Subject: [PATCH] Remove unused dict argument from OscConfigParser.SectionLine's init --- osc/OscConfigParser.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/osc/OscConfigParser.py b/osc/OscConfigParser.py index 475845fa..e28213a1 100644 --- a/osc/OscConfigParser.py +++ b/osc/OscConfigParser.py @@ -92,10 +92,9 @@ class SectionLine(Line): this certain section in the _lines list. The _lines list either contains CommentLine() or OptionLine() instances. """ - def __init__(self, sectname, dict = {}): + def __init__(self, sectname): Line.__init__(self, sectname, 'section') self._lines = [] - self._dict = dict def _find(self, name): for line in self._lines: