Merge "Add missing 'self' parameter to class methods"

This commit is contained in:
Zuul 2018-01-29 22:03:22 +00:00 committed by Gerrit Code Review
commit 6da364ba33
1 changed files with 5 additions and 5 deletions

View File

@ -70,17 +70,17 @@ class DoNotCallPopen(object):
def __init__(self, *args, **kwargs):
do_not_call(*args, **kwargs)
def communicate(input=None):
def communicate(self, input=None):
pass
def kill():
def kill(self):
pass
def poll():
def poll(self):
pass
def terminate():
def terminate(self):
pass
def wait():
def wait(self):
pass