From 97d640dd4016e2dac0672b198698c89ca6227508 Mon Sep 17 00:00:00 2001 From: Donald Zou Date: Fri, 9 Aug 2024 16:09:55 -0400 Subject: [PATCH] Update dashboard.py --- src/dashboard.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dashboard.py b/src/dashboard.py index ad373e8..aa19db6 100644 --- a/src/dashboard.py +++ b/src/dashboard.py @@ -868,7 +868,7 @@ class WireguardConfiguration: "PreDown": self.PreDown, "PostUp": self.PostUp, "PostDown": self.PostDown, - "SaveConfig": self.SaveConfig + "SaveConfig": self.SaveConfig, "DataUsage": { "Total": sum(list(map(lambda x: x.cumu_data + x.total_data, self.Peers))), "Sent": sum(list(map(lambda x: x.cumu_sent + x.total_sent, self.Peers))),