summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKostis Anagnostopoulos <ankostis@gmail.com>2022-09-22 12:14:33 +0300
committerKostis Anagnostopoulos <ankostis@gmail.com>2022-09-27 13:51:37 +0300
commite0bb6ec647ccc518a6df3617393831337e89d64f (patch)
tree98cd8995d530f9d2b1c49d4696c0273972664f6c
parent265ed00129168cb3d7b6feb7a8b8de3c9c788ef3 (diff)
doc(help): replace inner doc-strings with comments >
though it does not affect size of compiled-code.
-rw-r--r--glances/plugins/glances_help.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/glances/plugins/glances_help.py b/glances/plugins/glances_help.py
index 2d3fadf2..55c7bce0 100644
--- a/glances/plugins/glances_help.py
+++ b/glances/plugins/glances_help.py
@@ -53,7 +53,8 @@ class Plugin(GlancesPlugin):
msg_col = ' {0:1} {1:34}'
msg_header = '{0:39}'
- """First column"""
+ ## First column
+ #
self.view_data['header_sort'] = msg_header.format('SORT PROCESSES:')
self.view_data['sort_auto'] = msg_col.format('a', 'Automatically')
self.view_data['sort_cpu'] = msg_col.format('c', 'CPU%')
@@ -82,7 +83,8 @@ class Plugin(GlancesPlugin):
self.view_data['show_hide_processes'] = msg_col.format('z', 'Processes')
self.view_data['show_hide_left_sidebar'] = msg_col.format('2', 'Left sidebar')
- """Second column"""
+ ## Second column
+ #
self.view_data['show_hide_quick_look'] = msg_col.format('3', 'Quick Look')
self.view_data['show_hide_cpu_mem_swap'] = msg_col.format('4', 'CPU, MEM, and SWAP')
self.view_data['show_hide_all'] = msg_col.format('5', 'ALL')