From 7404742c69c4d94c76636deb51204773af61f15c Mon Sep 17 00:00:00 2001 From: Lauchmelder23 Date: Fri, 26 Mar 2021 09:13:21 +0000 Subject: [PATCH] Fixed error in configuration script --- configure.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.py b/configure.py index 38247d4..16184a2 100644 --- a/configure.py +++ b/configure.py @@ -8,5 +8,5 @@ parser.add_argument("secret", type=str) args = parser.parse_args() data = {"client_id": args.client_id, "secret": args.secret} -with open("config.json") as file: +with open("config.json", "w") as file: json.dump(data, file)