Actually store things in the KSA field

This commit is contained in:
John Donaldson 2019-07-12 17:18:25 +01:00
parent 87981f4e62
commit c0cb4d6e02
1 changed files with 1 additions and 1 deletions

View File

@ -142,7 +142,7 @@ class Puzzle:
elif key == "solution":
self.solution = val
elif key == "ksa":
self.solution = val
self.ksa.append(val)
else:
raise ValueError("Unrecognized header field: {}".format(key))
else: