mirror of
https://github.com/openSUSE/osc.git
synced 2024-12-27 02:16:12 +01:00
Remove unused dict argument from OscConfigParser.SectionLine's init
This commit is contained in:
parent
4b487d4f99
commit
f54ff7f9c3
@ -92,10 +92,9 @@ class SectionLine(Line):
|
|||||||
this certain section in the _lines list. The _lines list either contains
|
this certain section in the _lines list. The _lines list either contains
|
||||||
CommentLine() or OptionLine() instances.
|
CommentLine() or OptionLine() instances.
|
||||||
"""
|
"""
|
||||||
def __init__(self, sectname, dict = {}):
|
def __init__(self, sectname):
|
||||||
Line.__init__(self, sectname, 'section')
|
Line.__init__(self, sectname, 'section')
|
||||||
self._lines = []
|
self._lines = []
|
||||||
self._dict = dict
|
|
||||||
|
|
||||||
def _find(self, name):
|
def _find(self, name):
|
||||||
for line in self._lines:
|
for line in self._lines:
|
||||||
|
Loading…
Reference in New Issue
Block a user