Changeset - fb7f38e22730
[Not reviewed]
default
0 1 0
domruf - 9 years ago 2017-05-10 22:58:06
dominikruf@gmail.com
bin: fix __eq__ of bin/base.py RcConf

__eq__ without parameter makes no sense - found by pylint.

(The method is thus apparently unused and could be removed completely together
with other RcConf code.)
1 file changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
kallithea/bin/base.py
Show inline comments
 
@@ -111,8 +111,8 @@ class RcConf(object):
 
            return True
 
        return False
 

	
 
    def __eq__(self):
 
        return self._conf.__eq__()
 
    def __eq__(self, other):
 
        return self._conf.__eq__(other)
 

	
 
    def __repr__(self):
 
        return 'RcConf<%s>' % self._conf.__repr__()
0 comments (0 inline, 0 general)