Skip to content

Commit 004d097

Browse files
committed
refactor scripts: ensure files end with a newline for consistency and adherence to conventions
1 parent ba616e7 commit 004d097

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

scripts/create_perf_table.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,4 +102,4 @@
102102
IT_I += 1
103103
IT_I = 2
104104

105-
workbook.close()
105+
workbook.close()

scripts/jobs_graph.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,4 @@ def save_graph(dot, filename, file_format):
5050
svg_path = os.path.join("docs", "_static", "ci_graph")
5151
gha_data = parse_gha_yml(gha_file_path)
5252
jobs_graph = build_jobs_graph(gha_data)
53-
save_graph(jobs_graph, svg_path, "svg")
53+
save_graph(jobs_graph, svg_path, "svg")

scripts/variants_generation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,4 @@ def generate_group_table(_num_tasks, _num_students, _num_variants, _csv_file):
6767

6868
for num_students, index in zip(list_students, range(len(list_students))):
6969
csv_path = path_to_results / f'variants_group_{index + 1}.csv'
70-
generate_group_table(NUM_TASKS, num_students, num_variants, csv_path.as_posix())
70+
generate_group_table(NUM_TASKS, num_students, num_variants, csv_path.as_posix())

0 commit comments

Comments
 (0)