python: remove unused template parameter

Since commit cf8be663 this is no longer needed.

Signed-off-by: Axel Heider <axelheider@gmx.de>
This commit is contained in:
Axel Heider
2023-12-19 17:49:22 +01:00
committed by Gerwin Klein
parent 498fd84a55
commit ed613d7d49

View File

@@ -178,7 +178,7 @@ def generate(args, invocations):
template = Environment(loader=BaseLoader).from_string(INVOCATION_TEMPLATE)
data = template.render({'header_title': header_title, 'libsel4': args.libsel4,
'invocations': invocations, 'num_invocations': len(invocations)})
'invocations': invocations})
args.dest.write(data)
args.dest.close()