Skip to content

Commit

Permalink
Newline fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pwojcikdev committed Oct 29, 2024
1 parent c09e95b commit f3c908e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/record_rep_weights.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
outputfile = 'bootstrap_weights_' + args.network + '.hpp'

with open(outputfile, 'w') as of:
of.write(f"#pragma once\n\n#include <string>\n#include <vector>\nnamespace nano::weights\n{{\n")
of.write(f"#pragma once\n\n#include <string>\n#include <vector>\n\nnamespace nano::weights\n{{\n")
of.write(f"// Bootstrap weights for {args.network} network\n")
of.write(f"std::vector<std::pair<std::string, std::string>> preconfigured_weights_{args.network} = {{\n")

Expand Down

0 comments on commit f3c908e

Please sign in to comment.