Skip to content

Commit b602d18

Browse files
committed
pylint 1.6.3 complains about not calling .
1 parent 1942f2d commit b602d18

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

gcloud/logging/test__gax.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -898,7 +898,8 @@ class _DummyException(AbortionError):
898898
code = status_code
899899

900900
def __init__(self):
901-
pass
901+
super(_DummyException, self).__init__(
902+
None, None, self.code, None)
902903

903904
return _DummyException()
904905

gcloud/pubsub/test__gax.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -749,7 +749,8 @@ class _DummyException(AbortionError):
749749
code = status_code
750750

751751
def __init__(self):
752-
pass
752+
super(_DummyException, self).__init__(
753+
None, None, self.code, None)
753754

754755
return _DummyException()
755756

0 commit comments

Comments
 (0)