From 1b95094b86c55042ac7aaf38d3eb9c688847b30b Mon Sep 17 00:00:00 2001 From: Lord Baryhobal Date: Tue, 22 Aug 2023 20:59:47 +0200 Subject: [PATCH] fixed missing newline after emitter docstring --- XFTGenerator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/XFTGenerator.py b/XFTGenerator.py index 9294ac5..2e9ace2 100644 --- a/XFTGenerator.py +++ b/XFTGenerator.py @@ -241,7 +241,7 @@ def main(): emit_dec += " * Emit the {event} event\n" emit_dec += " * @param me the {filename} itself\n" emit_dec += " * @param t time to wait in ms before triggering event\n" - emit_dec += " */" + emit_dec += " */\n" emit_dec += "void {filename}_emit{Event}({filename}* me, uint16_t t);" emit_dec = emit_dec.replace("{filename}", fn_uc)