File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ def __init__(self) -> None:
68
68
@cmd2 .with_category (TABLE_CATEGORY )
69
69
def do_cities (self , _ : cmd2 .Statement ) -> None :
70
70
"""Display the cities with the largest population."""
71
- table = Table (show_footer = False )
71
+ table = Table ()
72
72
table .title = "10 Largest Cities by Population 2025"
73
73
table .caption = "Data from https://worldpopulationreview.com/"
74
74
@@ -85,7 +85,7 @@ def do_cities(self, _: cmd2.Statement) -> None:
85
85
@cmd2 .with_category (TABLE_CATEGORY )
86
86
def do_countries (self , _ : cmd2 .Statement ) -> None :
87
87
"""Display the countries with the largest population."""
88
- table = Table (show_footer = False )
88
+ table = Table ()
89
89
table .title = "10 Largest Countries by Population 2025"
90
90
table .caption = "Data from https://worldpopulationreview.com/ and Wikipedia"
91
91
You can’t perform that action at this time.
0 commit comments