about summary refs log tree commit diff
path: root/solve.py
diff options
context:
space:
mode:
authorEmile <git@emile.space>2023-02-19 14:02:02 +0100
committerEmile <git@emile.space>2023-02-19 14:02:02 +0100
commitbb0c7ca2ab9b9067d370f4cfe4d1b3cb4537c2f2 (patch)
tree49e75f486fb4e53e52b3ed5dc1603e8634fe949d /solve.py
parentdb47e3ef1a15c0aac7519ff1de3c8f58225517db (diff)
caching view
Diffstat (limited to 'solve.py')
-rw-r--r--solve.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/solve.py b/solve.py
index 82cf1f0..ed81c28 100644
--- a/solve.py
+++ b/solve.py
@@ -663,8 +663,8 @@ while True:
         with open('cache.pickle', 'wb') as handle:
             pickle.dump(cache, handle, protocol=pickle.HIGHEST_PROTOCOL)
 
-        for k, v in cache:
-            print(k, v)
+        for k in cache:
+            print(k, cache[k])
 
 
         break