Merge "[UX] Align to left the table for the validations run results" into stable/train

This commit is contained in:
Zuul 2021-02-23 10:33:33 +00:00 committed by Gerrit Code Review
commit 38ab043d3c
1 changed files with 1 additions and 0 deletions

View File

@ -410,6 +410,7 @@ class TripleOValidatorRun(command.Command):
t = PrettyTable(border=True, header=True, padding_width=1)
# Set Field name by getting the result dict keys
t.field_names = results[0].keys()
t.align = 'l'
is_failed_validation = False
for r in results:
if r.get('Status_by_Host'):