mirror of
https://github.com/iperov/DeepFaceLive
synced 2025-07-16 10:03:42 -07:00
refactoring
This commit is contained in:
parent
8489949f2c
commit
30ba51edf7
24 changed files with 663 additions and 459 deletions
|
@ -247,7 +247,8 @@ def ascii_table(table_def : List[str],
|
|||
if row_line is not None:
|
||||
lines.append(row_line)
|
||||
for sub_rows in rows:
|
||||
|
||||
|
||||
|
||||
for row in sub_rows:
|
||||
line = ''
|
||||
|
||||
|
@ -288,7 +289,8 @@ def ascii_table(table_def : List[str],
|
|||
line += right_border
|
||||
|
||||
lines.append(line)
|
||||
if row_line is not None:
|
||||
|
||||
if len(sub_rows) != 0 and row_line is not None:
|
||||
lines.append(row_line)
|
||||
|
||||
return '\n'.join(lines)
|
Loading…
Add table
Add a link
Reference in a new issue