Fix tests and linter errors, still need to handle todos

This commit is contained in:
Sumner Evans
2020-06-06 22:15:50 -06:00
parent f4983fb96a
commit 54d03b6579
7 changed files with 21 additions and 25 deletions

View File

@@ -223,5 +223,4 @@ class AppConfiguration(DataClassJsonMixin):
if state_filename := self._state_file_location:
state_filename.parent.mkdir(parents=True, exist_ok=True)
with open(state_filename, "wb+") as f:
print("SAVE STATE", state_filename)
pickle.dump(self.state, f)