summaryrefslogtreecommitdiff
path: root/tools/patman/commit.py
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2022-02-11 13:23:18 -0700
committerTom Rini <trini@konsulko.com>2022-03-02 10:28:12 -0500
commit32cc6ae273128510cffc536fc72f260181ef1744 (patch)
treef83965c262417db03c0ef725582f7bdfc5f1aa3b /tools/patman/commit.py
parentf9a719e2954473f9be1f8c14a28288f943a00dd2 (diff)
patman: Correct pylint errors
Fix pylint errors that can be fixed and mask those that seem to be incorrect. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/patman/commit.py')
-rw-r--r--tools/patman/commit.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/patman/commit.py b/tools/patman/commit.py
index c331a3b1221..a645b22d087 100644
--- a/tools/patman/commit.py
+++ b/tools/patman/commit.py
@@ -31,7 +31,7 @@ class Commit:
"""
def __init__(self, hash):
self.hash = hash
- self.subject = None
+ self.subject = ''
self.tags = []
self.changes = {}
self.cc_list = []