1
0
Fork 0

No italics

master
Gürkan Gür 2022-08-15 22:59:33 +02:00
parent b7f28bd743
commit 2e1781b93a
1 changed files with 2 additions and 1 deletions

View File

@ -239,7 +239,8 @@ def fill_table(
f'[strike]{task["content"]}' if task['completed'] else task['content'],
','.join(task['labels']) if task['labels'] else '--',
task['alias'],
style='italic' if counter % 2 == 0 else None
style=f"magenta{' on black' if counter % 2 == 0 else ''}"
# style='italic' if counter % 2 == 0 else None
)