Browse Source

New method for basic display to print an end message

Jovian (Netbook) 6 years ago
parent
commit
a3f2abe010
4 changed files with 8 additions and 3 deletions
  1. 1 1
      app_customer.py
  2. 1 1
      app_dispatcher.py
  3. 1 1
      app_product.py
  4. 5 0
      basic_display.py

+ 1 - 1
app_customer.py

@@ -60,4 +60,4 @@ while running:
     else:
         print('Action', action, 'not implemented yet.')
 
-print('End')
+display.end()

+ 1 - 1
app_dispatcher.py

@@ -16,4 +16,4 @@ for r in rows:
         print(r)
 print('Application not implemented yet')
 
-print('End')
+display.end()

+ 1 - 1
app_product.py

@@ -33,4 +33,4 @@ while running:
     else:
         print('Action', action, 'not implemented yet.')
 
-print('End')
+display.end()

+ 5 - 0
basic_display.py

@@ -14,6 +14,11 @@ class BasicDisplay():
     def error(self, *message):
         print('ERROR :', *message)
 
+    def end(self):
+        """Display endline before closing app"""
+        bar = '-' * 5
+        print('+', bar, 'end', bar, '+')
+
     def product(self, p):
         print(p.id ,':', p.name)