mirror of https://github.com/Textualize/rich.git
fix typos in test card
This commit is contained in:
parent
eef627d6ee
commit
f538099efa
|
@ -112,15 +112,15 @@ def make_test_card() -> Table:
|
|||
example_table.add_column("Production Budget", justify="right")
|
||||
example_table.add_column("Box Office", justify="right")
|
||||
example_table.add_row(
|
||||
"Dev 20, 2019",
|
||||
"Dec 20, 2019",
|
||||
"Star Wars: The Rise of Skywalker",
|
||||
"$275,000,0000",
|
||||
"$275,000,000",
|
||||
"$375,126,118",
|
||||
)
|
||||
example_table.add_row(
|
||||
"May 25, 2018",
|
||||
"[red]Solo[/red]: A Star Wars Story",
|
||||
"$275,000,0000",
|
||||
"$275,000,000",
|
||||
"$393,151,347",
|
||||
)
|
||||
example_table.add_row(
|
||||
|
|
|
@ -480,7 +480,7 @@ def blend_rgb(
|
|||
return new_color
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
if __name__ == "__main__": # pragma: no cover
|
||||
|
||||
from .console import Console
|
||||
from .table import Column, Table
|
||||
|
@ -508,4 +508,3 @@ if __name__ == "__main__":
|
|||
)
|
||||
|
||||
console.print(table)
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue