diff options
| author | Павел Жуков <33721692+LeaveMyYard@users.noreply.github.com> | 2023-05-15 18:19:57 +0300 |
|---|---|---|
| committer | Павел Жуков <33721692+LeaveMyYard@users.noreply.github.com> | 2023-05-15 18:19:57 +0300 |
| commit | fabf1b4fd2c1ae0245d2f0c6000ff8d9d197a29e (patch) | |
| tree | db049b2dc9c9149962bdf49ab5f9b23a824bf4e1 /robusta_krr/formatters | |
| parent | 7bd0c5298e233248e17e6c0cf9ac0e6d7e30ca73 (diff) | |
[MAIN-169] Add strategy description
Diffstat (limited to 'robusta_krr/formatters')
| -rw-r--r-- | robusta_krr/formatters/table.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/robusta_krr/formatters/table.py b/robusta_krr/formatters/table.py index 8a93f04..6918512 100644 --- a/robusta_krr/formatters/table.py +++ b/robusta_krr/formatters/table.py @@ -50,7 +50,7 @@ class TableFormatter(BaseFormatter): :rtype: str """ - table = Table(show_header=True, header_style="bold magenta", title=f"Scan result ({result.score} points)") + table = Table(show_header=True, header_style="bold magenta", title=f"Scan result ({result.score} points)", caption=result.description) table.add_column("Number", justify="right", no_wrap=True) table.add_column("Cluster", style="cyan") |
