10 lines
170 B
Python
10 lines
170 B
Python
"""Main library table column definitions."""
|
|
|
|
TABLE_COLUMN_DEFS = (
|
|
("Title", 4),
|
|
("Author", 3),
|
|
("Length", 1),
|
|
("Progress", 1),
|
|
("Downloaded", 1),
|
|
)
|