Add missing 'self' parameter to class methods

The 'self' parameter was missing in the class methods of the
DoNotCallPopen class. Add the 'self' parameter to the class methods.

Change-Id: I29bed962a97c8b28b3feb266d76243da4b4cab7a
This commit is contained in:
John L. Villalovos 2018-01-24 12:17:44 -08:00
parent 831c55bf12
commit ce0655bcda
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