From 76827abd78043cef7b3a61ac134da2d591345922 Mon Sep 17 00:00:00 2001 From: Jesse Mullan Date: Sat, 1 Nov 2014 16:27:02 -0700 Subject: [PATCH] Fix E701 multiple statements on one line (colon) --- headphones/notifiers.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/headphones/notifiers.py b/headphones/notifiers.py index 9cfec86c..e92177e7 100644 --- a/headphones/notifiers.py +++ b/headphones/notifiers.py @@ -423,7 +423,8 @@ class NMA(object): keys = api.split(',') p.addkey(keys) - if len(keys) > 1: batch = True + if len(keys) > 1: + batch = True response = p.push(title, event, message, priority=nma_priority, batch_mode=batch)