From 1b2aed9ad9cf2b715ab42306ea549ac19280d8c4 Mon Sep 17 00:00:00 2001 From: Loup-Garou911XD Date: Sat, 20 Apr 2024 20:56:26 +0000 Subject: [PATCH] [ci] auto-format --- plugin_manager.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/plugin_manager.py b/plugin_manager.py index 59e2ae18..a024550e 100644 --- a/plugin_manager.py +++ b/plugin_manager.py @@ -387,7 +387,9 @@ async def notify_new_plugins(self): if new_supported_plugins_count == 1: notification_text = f"{new_supported_plugins_count} new plugin ({new_supported_plugins}) is available!" else: - notification_text = new_supported_plugins + ('' if new_supported_plugins_count <= 3 else ' and +' + str(new_supported_plugins_count-3) ) + " new plugins" + notification_text = new_supported_plugins + \ + ('' if new_supported_plugins_count <= 3 else ' and +' + + str(new_supported_plugins_count-3)) + " new plugins" bui.screenmessage(notification_text, color=(0, 1, 0)) if existing_num_of_plugins != new_num_of_plugins: