summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDjent- <patrick.hurd.1995@gmail.com>2019-05-02 14:22:20 -0700
committerGitHub <noreply@github.com>2019-05-02 14:22:20 -0700
commitb832581220073b01f21f1551892bde844bf57eac (patch)
tree51097bfe19f4997bdfe43d588ae34099b6ff53c4
parentb78bf719e697e1e272f2aa0856724d6ce2ac1d98 (diff)
Change indentation to appease pylint
-rw-r--r--pywal/reload.py6
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")
])