summaryrefslogtreecommitdiff
path: root/src/manage_saves.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/manage_saves.py')
-rw-r--r--src/manage_saves.py2
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)