Change indentation to appease pylint

This commit is contained in:
Djent- 2019-05-02 14:22:20 -07:00 committed by GitHub
parent b78bf719e6
commit b832581220
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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")
])