From 5bbdb55d54210dbe3c3c080cc19639bc02f0895e Mon Sep 17 00:00:00 2001 From: Wil Thieme Date: Sat, 2 Mar 2024 17:33:27 -0500 Subject: [PATCH] png not svg --- src/users_graph.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/users_graph.py b/src/users_graph.py index 19cfae8..27e66af 100644 --- a/src/users_graph.py +++ b/src/users_graph.py @@ -35,4 +35,4 @@ def graph_users(sales: list[dict[str, (str | int | None)]]) -> None: sns.despine(left=True) - plt.savefig("cumulative_users.svg", dpi=300, bbox_inches="tight", transparent=True) + plt.savefig("cumulative_users.png", dpi=300, bbox_inches="tight", transparent=True)