From 9d6691a78fa81e5594ff42bb27d543b03ed31d41 Mon Sep 17 00:00:00 2001 From: Alexis de Lattre Date: Sun, 14 Jun 2015 11:10:49 +0200 Subject: [PATCH] PEP8 --- pos_customer_display/pos_customer_display.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pos_customer_display/pos_customer_display.py b/pos_customer_display/pos_customer_display.py index 9dbae58d..9fae705b 100644 --- a/pos_customer_display/pos_customer_display.py +++ b/pos_customer_display/pos_customer_display.py @@ -59,10 +59,12 @@ class PosConfig(models.Model): if self.customer_display_line_length: maxsize = self.customer_display_line_length to_check = { - _('Next Customer (top line)'): self.customer_display_msg_next_l1, + _('Next Customer (top line)'): + self.customer_display_msg_next_l1, _('Next Customer (bottom line)'): self.customer_display_msg_next_l2, - _('POS Closed (top line)'): self.customer_display_msg_closed_l1, + _('POS Closed (top line)'): + self.customer_display_msg_closed_l1, _('POS Closed (bottom line)'): self.customer_display_msg_closed_l2, }