This member is used in series.MakeCcFile() so should be declared in the
Series class.
Add a declaration to silence the warning.
Signed-off-by: Simon Glass <sjg@chromium.org>
value: Set of people who gave that rtag, each a name/email string
warn: List of warnings for this commit, each a str
patch (str): Filename of the patch file for this commit
+ future (concurrent.futures.Future): Future object for processing this
+ commit, or None
"""
def __init__(self, hash):
self.hash = hash
self.rtags = collections.defaultdict(set)
self.warn = []
self.patch = ''
+ self.future = None
def __str__(self):
return self.subject