Avoid shadowing built-ins/variables

This commit is contained in:
JoeLametta
2019-01-16 21:21:21 +00:00
parent fef7973113
commit 5311727572
8 changed files with 28 additions and 28 deletions

View File

@@ -115,13 +115,13 @@ class PopenTask(task.Task):
os.kill(self._popen.pid, signal.SIGTERM)
# self.stop()
def readbytesout(self, bytes):
def readbytesout(self, bytes_stdout):
"""
Called when bytes have been read from stdout.
"""
pass
def readbyteserr(self, bytes):
def readbyteserr(self, bytes_stderr):
"""
Called when bytes have been read from stderr.
"""