diff options
| author | Chandler J <cjustice2000@gmail.com> | 2024-04-06 20:52:13 -0600 |
|---|---|---|
| committer | Chandler J <cjustice2000@gmail.com> | 2024-04-06 20:52:44 -0600 |
| commit | b09d6a0a2d9887b5560a3b49cb8a603a33ec4828 (patch) | |
| tree | 0fbfeab50c95e6732ab69b1e3dae852fd80b0598 /src/manage_saves.py | |
| parent | b7dc1316ab0eb51f408b2b7782571d868ad3b864 (diff) | |
improved color picker
Diffstat (limited to 'src/manage_saves.py')
| -rw-r--r-- | src/manage_saves.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/manage_saves.py b/src/manage_saves.py index 988b9a2..1ada559 100644 --- a/src/manage_saves.py +++ b/src/manage_saves.py @@ -3,7 +3,7 @@ from rich import print def save_color_palette(hex_colors, hex_compliments, save_directory): - colors = [hex_colors, hex_compliments] + colors = (hex_colors, hex_compliments) with open(save_directory, 'wb') as file: pickle.dump(colors, file, pickle.HIGHEST_PROTOCOL) |
