From 38b74273ba9e9b6f74be9d490d55a27d73681dc4 Mon Sep 17 00:00:00 2001 From: Emile Date: Sun, 19 Feb 2023 14:05:08 +0100 Subject: don't print the whole cache, only keys --- solve.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/solve.py b/solve.py index ed81c28..60ae42c 100644 --- a/solve.py +++ b/solve.py @@ -664,7 +664,8 @@ while True: pickle.dump(cache, handle, protocol=pickle.HIGHEST_PROTOCOL) for k in cache: - print(k, cache[k]) + #print(k, cache[k]) + print(k) break -- cgit 1.4.1