diff options
| author | Djent- <patrick.hurd.1995@gmail.com> | 2019-05-02 14:22:20 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-05-02 14:22:20 -0700 |
| commit | b832581220073b01f21f1551892bde844bf57eac (patch) | |
| tree | 51097bfe19f4997bdfe43d588ae34099b6ff53c4 | |
| parent | b78bf719e697e1e272f2aa0856724d6ce2ac1d98 (diff) | |
Change indentation to appease pylint
| -rw-r--r-- | pywal/reload.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pywal/reload.py b/pywal/reload.py index 5e3c3f8..13e0ca8 100644 --- a/pywal/reload.py +++ b/pywal/reload.py @@ -57,10 +57,10 @@ def bspwm(): def kitty(): """ Reload kitty colors. """ if (shutil.which("kitty") - and util.get_pid("kitty") - and os.getenv('TERM') == 'xterm-kitty'): + and util.get_pid("kitty") + and os.getenv('TERM') == 'xterm-kitty'): subprocess.call([ - "kitty", "@", "set-colors", "--all", + "kitty", "@", "set-colors", "--all", os.path.join(CACHE_DIR, "colors-kitty.conf") ]) |
