summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDylan Araps <dylan.araps@gmail.com>2017-06-30 15:27:51 +1000
committerDylan Araps <dylan.araps@gmail.com>2017-06-30 15:27:51 +1000
commit1f531160d64257f3dff04421e852a1ca974f5547 (patch)
treea318fd77ddac7275ae6958ccc04ea219a874d16f
parentc8f76a5604f3f4103d92915e33d6394bc17bfd9c (diff)
general: cleanup
-rwxr-xr-xpywal/__main__.py2
-rwxr-xr-xpywal/export.py1
-rwxr-xr-xpywal/sequences.py1
3 files changed, 1 insertions, 3 deletions
diff --git a/pywal/__main__.py b/pywal/__main__.py
index 228ceb4..ff86b00 100755
--- a/pywal/__main__.py
+++ b/pywal/__main__.py
@@ -64,7 +64,7 @@ def process_args(args):
exit(1)
if args.i and args.f:
- print("error: conflicting arguments -i and -f.\n"
+ print("error: Conflicting arguments -i and -f.\n"
" Refer to \"wal -h\" for more info.")
exit(1)
diff --git a/pywal/export.py b/pywal/export.py
index 29e0067..dce39d4 100755
--- a/pywal/export.py
+++ b/pywal/export.py
@@ -29,7 +29,6 @@ def template(colors, input_file, output_dir):
def export_all_templates(colors, template_dir=None, output_dir=CACHE_DIR):
"""Export all template files."""
-
# Add the template dir to module path.
template_dir = template_dir or \
os.path.join(os.path.dirname(__file__), "templates")
diff --git a/pywal/sequences.py b/pywal/sequences.py
index eb51497..7542422 100755
--- a/pywal/sequences.py
+++ b/pywal/sequences.py
@@ -20,7 +20,6 @@ def set_color(index, color):
def send_sequences(colors, vte):
"""Send colors to all open terminals."""
-
# Colors 0-15.
sequences = [set_color(num, color)
for num, color in enumerate(colors["colors"].values())]