Skip to content

Commit

Permalink
remove redundant 'return' statement
Browse files Browse the repository at this point in the history
  • Loading branch information
Elmir Jagudin committed Sep 9, 2013
1 parent f5fc534 commit 5a4c0c6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions master/buildbot/process/mtrlogobserver.py
Expand Up @@ -37,9 +37,9 @@ class EqConnectionPool(adbapi.ConnectionPool):
"""
def __init__(self, *args, **kwargs):
self._eqKey = (args, kwargs)
return adbapi.ConnectionPool.__init__(self,
cp_reconnect=True, cp_min=1, cp_max=3,
*args, **kwargs)
adbapi.ConnectionPool.__init__(self,
cp_reconnect=True, cp_min=1, cp_max=3,
*args, **kwargs)

def __eq__(self, other):
if isinstance(other, EqConnectionPool):
Expand Down

0 comments on commit 5a4c0c6

Please sign in to comment.