[coverage] Explicit super in process.py

This commit is contained in:
Harlan Haskins
2016-02-01 16:05:13 -08:00
parent eb9fb9cde9
commit 45df8491f4

View File

@@ -19,7 +19,7 @@ import subprocess
class ProfdataMergerProcess(Process):
def __init__(self, config, file_queue):
Process.__init__(self)
super(ProfdataMergerProcess, self).__init__()
self.config = config
self.file_queue = file_queue
self.filename_buffer = []