From 961fcfd7147854dbc2e0efe314eb812c37753ab3 Mon Sep 17 00:00:00 2001 From: Brett Laptop Date: Wed, 8 Jan 2025 19:51:09 -0500 Subject: [PATCH] silly --- CMakeLists.txt | 2 +- graph.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b293e7e..36e8849 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.25) -project(COSC-4P80-Final-Project VERSION 0.0.21) +project(COSC-4P80-Final-Project VERSION 0.0.22) option(ENABLE_ADDRSAN "Enable the address sanitizer" OFF) option(ENABLE_UBSAN "Enable the ub sanitizer" OFF) diff --git a/graph.py b/graph.py index 9039994..c0c1f02 100644 --- a/graph.py +++ b/graph.py @@ -48,4 +48,4 @@ if __name__ == "__main__": position = sys.argv[5] position2 = sys.argv[6] - plot_stacked_graph(title, output, csv_file1, csv_file2, position, position2) \ No newline at end of file + plot_stacked_graph(title, output, csv_file1, csv_file2, int(position), int(position2)) \ No newline at end of file