diff options
author | Emile <git@emile.space> | 2023-02-19 14:05:08 +0100 |
---|---|---|
committer | Emile <git@emile.space> | 2023-02-19 14:05:08 +0100 |
commit | 38b74273ba9e9b6f74be9d490d55a27d73681dc4 (patch) | |
tree | 29c4a9acdca947202bd02bd64149927a45075a35 | |
parent | bb0c7ca2ab9b9067d370f4cfe4d1b3cb4537c2f2 (diff) |
don't print the whole cache, only keys
-rw-r--r-- | solve.py | 3 |
1 files changed, 2 insertions, 1 deletions
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 |