From cf4213c8bba4a39d3f8848cb382a322487ef7951 Mon Sep 17 00:00:00 2001 From: Mike A Date: Mon, 1 Jan 2024 22:08:40 +0100 Subject: [PATCH] Fix leftover commented code --- examples/fetch_reports.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/fetch_reports.py b/examples/fetch_reports.py index 6270cf8..cb8e7c2 100644 --- a/examples/fetch_reports.py +++ b/examples/fetch_reports.py @@ -59,8 +59,8 @@ def fetch_reports(lookup_key): acc.restore(json.load(f)) else: login(acc) - # with open("account.json", "w+") as f: - # json.dump(acc.export(), f) + with open("account.json", "w+") as f: + json.dump(acc.export(), f) print(f"Logged in as: {acc.account_name} ({acc.first_name} {acc.last_name})")