From 0a5ba6439d7b0ea61cd31ced9aed9383399360aa Mon Sep 17 00:00:00 2001 From: Sanjin <102841251+duckduckgrayduck@users.noreply.github.com> Date: Thu, 5 Oct 2023 10:17:48 -0500 Subject: [PATCH] Test new save() --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index bee568e..155a546 100644 --- a/main.py +++ b/main.py @@ -7,7 +7,7 @@ def main(self): for document in self.get_documents(): if document not in project.document_list: project.document_list.append(document) - project.put() + project.save() if __name__ == "__main__": ProjectAdder().main()