From 8c3531d99af27d9ee3760b13375014d0ae7a7cb1 Mon Sep 17 00:00:00 2001 From: Damien De Paoli Date: Mon, 30 Aug 2021 17:55:15 +1000 Subject: [PATCH] use PA class for __repr__ inheritence for Status --- status.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/status.py b/status.py index 2ca01d5..6c4d58a 100644 --- a/status.py +++ b/status.py @@ -1,8 +1,10 @@ +from shared import PA + ### shared variables to show state of save/delete when we redirect to 'show all' view # used mostly to note we have create a job for the job manager, or when a job finishes # including when duplicates are found on import. These status messages are exposed into # the html files, and they show once for success/green, and sticky for danger/red -class Status: +class Status(PA): alert="success" message=""