diff options
| author | Dylan Araps <dylan.araps@gmail.com> | 2017-08-10 09:35:33 +1000 |
|---|---|---|
| committer | Dylan Araps <dylan.araps@gmail.com> | 2017-08-10 09:35:33 +1000 |
| commit | b142ea0814ea1846451769b05a061e988f57a769 (patch) | |
| tree | 185bee513bf9afde50b9e614085e53e0b688b404 /pywal/sequences.py | |
| parent | c61960722d28373a4668814d996a248819e220c0 (diff) | |
general: Remove need for OrderedDict
Diffstat (limited to 'pywal/sequences.py')
| -rw-r--r-- | pywal/sequences.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pywal/sequences.py b/pywal/sequences.py index 4844837..67c3efd 100644 --- a/pywal/sequences.py +++ b/pywal/sequences.py @@ -42,8 +42,8 @@ def set_iterm_tab_color(color): def create_sequences(colors, vte): """Create the escape sequences.""" # Colors 0-15. - sequences = [set_color(num, col) for num, col in - enumerate(colors["colors"].values())] + sequences = [set_color(index, colors["colors"]["color%s" % index]) + for index in range(16)] # Set a blank color that isn't affected by bold highlighting. # Used in wal.vim's airline theme. |
