Remove unnecessary return statement

__init__ method shouldn't return value. This patch removes the return
statement from the __init__ method.

TrivialFix

Change-Id: I1f5d9cf3ca04c27bc083a617d3d434456fe6a3b5
This commit is contained in:
poojajadhav 2017-03-07 16:58:45 +05:30
parent 8615148918
commit 1377d2251a
1 changed files with 0 additions and 1 deletions

View File

@ -33,7 +33,6 @@ class FakeClient(object):
def __init__(self):
super(FakeClient, self).__init__()
self.service = FakeService()
return self.service
class FakeService(object):