From 3abd029b9f9e094eefe779512367ffab800f1ae4 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 21 Sep 2022 08:38:09 -0700 Subject: [PATCH] Fix missing-final-newline error --- plugins/callback/profile_roles.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/callback/profile_roles.py b/plugins/callback/profile_roles.py index 5e67ef7..23c24c4 100644 --- a/plugins/callback/profile_roles.py +++ b/plugins/callback/profile_roles.py @@ -115,4 +115,5 @@ class CallbackModule(CallbackBase): msg_total = u"{0:-<70}{1:->9}".format(u'total ', u' {0:.02f}s'.format(total_time)) self._display.display(filled("", fchar="~")) - self._display.display(msg_total) \ No newline at end of file + self._display.display(msg_total) + \ No newline at end of file