diff options
author | Tristan Williams <tgwil@tgwil.net> | 2025-03-19 14:22:35 -0400 |
---|---|---|
committer | Tristan Williams <tgwil@tgwil.net> | 2025-03-19 14:22:35 -0400 |
commit | c7f58e00d5c91b6296f62e59fb6e3cabf573e9f1 (patch) | |
tree | 75b9a85e5ff284d599adf8a7574182d60852756a | |
parent | Create sortashuffle.py (diff) | |
download | sortashuffle-c7f58e00d5c91b6296f62e59fb6e3cabf573e9f1.tar.gz sortashuffle-c7f58e00d5c91b6296f62e59fb6e3cabf573e9f1.tar.bz2 sortashuffle-c7f58e00d5c91b6296f62e59fb6e3cabf573e9f1.zip |
Fix typo
-rw-r--r-- | sortashuffle.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sortashuffle.py b/sortashuffle.py index e15b357..14cd082 100644 --- a/sortashuffle.py +++ b/sortashuffle.py | |||
@@ -25,7 +25,7 @@ def get_episode_list(): | |||
25 | 25 | ||
26 | def get_weight_list(): | 26 | def get_weight_list(): |
27 | """Determine weights (# of episodes) so shows get spread evenly.""" | 27 | """Determine weights (# of episodes) so shows get spread evenly.""" |
28 | WEIGHTLIST = [len(show) for show in showlist] | 28 | WEIGHTLIST = [len(show) for show in SHOWLIST] |
29 | 29 | ||
30 | def shuffle(): | 30 | def shuffle(): |
31 | """Shuffle shows, randomly selected according to weight.""" | 31 | """Shuffle shows, randomly selected according to weight.""" |