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

@@ -75,8 +75,8 @@ class AnalyzeFileTask(cdparanoia.AnalyzeTask):
def __init__(self, path):
self.command = ['cat', path]
def readbytesout(self, bytes):
self.readbyteserr(bytes)
def readbytesout(self, bytes_stdout):
self.readbyteserr(bytes_stdout)
class CacheTestCase(common.TestCase):