Fixed pylint useless-super-delegation warning.

This commit is contained in:
slivik 2018-06-05 11:17:06 +02:00
parent d522f5dc6f
commit c13e79d8b6
No known key found for this signature in database
GPG Key ID: C3EA0559C87216D6

View File

@ -409,11 +409,7 @@ class _Section(OrderedDict):
self.name == item.name)
# pylint: disable=useless-super-delegation
class _Ini(_Section):
def __init__(self, name, inicontents='', separator='=', commenter='#'):
super(_Ini, self).__init__(name, inicontents, separator, commenter)
def refresh(self, inicontents=None):
if inicontents is None:
try: