diff options
| author | Dylan Araps <dylan.araps@gmail.com> | 2017-12-27 20:49:37 +1100 |
|---|---|---|
| committer | Dylan Araps <dylan.araps@gmail.com> | 2017-12-27 20:49:37 +1100 |
| commit | c3589442625a48066345f45f09ff353818694ac8 (patch) | |
| tree | 4473f1bd507273810862883d110d7e8dc32867a4 /pywal/sequences.py | |
| parent | 78582215a08301ff47e14b2722561a5044ac18b9 (diff) | |
general: fix linting
Diffstat (limited to 'pywal/sequences.py')
| -rw-r--r-- | pywal/sequences.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pywal/sequences.py b/pywal/sequences.py index 1043e60..e82ee6e 100644 --- a/pywal/sequences.py +++ b/pywal/sequences.py @@ -65,7 +65,7 @@ def create_sequences(colors): # \033[8m # Conceal text. # \033]708;#000000\007 # Garbage sequence. # \0338 # Restore cursor position. - sequences.append(f"\0337\033[1000H\033[8m\033]708;%s\007\0338" % + sequences.append("\0337\033[1000H\033[8m\033]708;%s\007\0338" % colors['special']['background']) return "".join(sequences) |
