mirror of
https://github.com/dylanaraps/pywal.git
synced 2024-11-28 19:03:17 +01:00
Fix line length for pylint
This commit is contained in:
parent
0c32f4e9a9
commit
b6a11f6338
@ -19,14 +19,13 @@ def list_out():
|
||||
user_themes = [theme.name.replace(".json", "")
|
||||
for theme in list_themes_user()]
|
||||
|
||||
|
||||
last_used_theme = util.read_file(os.path.join(
|
||||
CACHE_DIR, "last_used_theme"))[0].replace(".json", "")
|
||||
|
||||
if user_themes:
|
||||
print("\033[1;32mUser Themes\033[0m:")
|
||||
print(" -", "\n - ".join(t + " (last used)" if t == last_used_theme else t
|
||||
for t in sorted(user_themes)))
|
||||
print(" -", "\n - ".join(t + " (last used)" if t == last_used_theme
|
||||
else t for t in sorted(user_themes)))
|
||||
|
||||
print("\033[1;32mDark Themes\033[0m:")
|
||||
print(" -", "\n - ".join(t + " (last used)" if t == last_used_theme else t
|
||||
|
Loading…
Reference in New Issue
Block a user