summaryrefslogtreecommitdiff
path: root/tools/binman/etype/blob_named_by_arg.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/binman/etype/blob_named_by_arg.py')
-rw-r--r--tools/binman/etype/blob_named_by_arg.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/binman/etype/blob_named_by_arg.py b/tools/binman/etype/blob_named_by_arg.py
index 3b4593f071..e95dabe4d0 100644
--- a/tools/binman/etype/blob_named_by_arg.py
+++ b/tools/binman/etype/blob_named_by_arg.py
@@ -29,6 +29,6 @@ class Entry_blob_named_by_arg(Entry_blob):
See cros_ec_rw for an example of this.
"""
def __init__(self, section, etype, node, blob_fname):
- Entry_blob.__init__(self, section, etype, node)
+ super().__init__(section, etype, node)
self._filename, = self.GetEntryArgsOrProps(
[EntryArg('%s-path' % blob_fname, str)])