From f3c908e3c5ed8c998c7b7cc7a77381262581bb59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Wo=CC=81jcik?= <3044353+pwojcikdev@users.noreply.github.com> Date: Tue, 29 Oct 2024 13:59:07 +0100 Subject: [PATCH] Newline fix --- ci/record_rep_weights.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/record_rep_weights.py b/ci/record_rep_weights.py index 510a39a983..b3cb6f8077 100644 --- a/ci/record_rep_weights.py +++ b/ci/record_rep_weights.py @@ -46,7 +46,7 @@ outputfile = 'bootstrap_weights_' + args.network + '.hpp' with open(outputfile, 'w') as of: - of.write(f"#pragma once\n\n#include \n#include \nnamespace nano::weights\n{{\n") + of.write(f"#pragma once\n\n#include \n#include \n\nnamespace nano::weights\n{{\n") of.write(f"// Bootstrap weights for {args.network} network\n") of.write(f"std::vector> preconfigured_weights_{args.network} = {{\n")