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:
parent
831c55bf12
commit
ce0655bcda
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user