Skip to content

Commit

Permalink
[ci] auto-format
Browse files Browse the repository at this point in the history
  • Loading branch information
Loup-Garou911XD authored and github-actions[bot] committed Apr 20, 2024
1 parent a789d02 commit 1b2aed9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion plugin_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 1b2aed9

Please sign in to comment.