renovate/major-eslint-monorepo
nicolargo 2024-07-26 10:46:04 +02:00
parent 2b30c9986f
commit aacc12df45
1 changed files with 2 additions and 4 deletions

View File

@ -222,7 +222,7 @@ class PluginModel(GlancesPluginModel):
return return_ return return_
def msg_curse(self, args=None, max_width=None): def msg_curse(self, args=None, max_width=None):
"""Return the dict to display in the curse interface.""" """Return the list of dict to display in the curse interface."""
# Init the return message # Init the return message
return_ = [] return_ = []
@ -250,6 +250,4 @@ class PluginModel(GlancesPluginModel):
stats_added = self.display_cpu_stats_in_columns(cpu, header, header_added) stats_added = self.display_cpu_stats_in_columns(cpu, header, header_added)
# Add a new line with sum of all others CPU # Add a new line with sum of all others CPU
return_ = self.summarize_all_cpus_not_displayed(percpu_list, header, stats_added) return self.summarize_all_cpus_not_displayed(percpu_list, header, stats_added)
return return_