From 81cf6ea4d8b7323846c81dcc0a4efaa3930d7a1d Mon Sep 17 00:00:00 2001 From: my1e5 <10064103+my1e5@users.noreply.github.com> Date: Mon, 13 Mar 2023 14:53:00 +0000 Subject: [PATCH] main : update README --- .gitignore | 1 + README.md | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index d87f485..b871fb1 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ wip .vscode +persistance/*.json # Byte-compiled / optimized / DLL files __pycache__/ diff --git a/README.md b/README.md index 8d16aa8..bc167cf 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ Miscellaneous examples. ## Persistance -Examples of how to save and load the state of a GUI. This includes the values of GUI items, the position of windows, etc. A simple example using `dict` is shown as well as a more advanced example using `dataclasses`. +Examples of how to save and load the state of a GUI. This includes the values of GUI items, the position of windows, etc. A simple example using `dict` is shown as well as an approach using `dataclasses`. Both store the app state in a JSON file. ## Plots