Make Python code more idiomatic

This commit is contained in:
JoeLametta
2018-05-02 08:45:00 +00:00
parent a484815106
commit 2b4140d300
12 changed files with 24 additions and 27 deletions

View File

@@ -238,7 +238,7 @@ class ReadTrackTask(task.Task):
@param what: a string representing what's being read; e.g. Track
@type what: str
"""
assert type(path) is unicode, "%r is not unicode" % path
assert isinstance(path, unicode), "%r is not unicode" % path
self.path = path
self._table = table

View File

@@ -23,7 +23,7 @@ class AudioLengthTask(ctask.PopenTask):
"""
@type path: unicode
"""
assert type(path) is unicode, "%r is not unicode" % path
assert isinstance(path, unicode), "%r is not unicode" % path
self.logName = os.path.basename(path).encode('utf-8')