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:
6868 @cmd2 .with_category (TABLE_CATEGORY )
6969 def do_cities (self , _ : cmd2 .Statement ) -> None :
7070 """Display the cities with the largest population."""
71- table = Table (show_footer = False )
71+ table = Table ()
7272 table .title = "10 Largest Cities by Population 2025"
7373 table .caption = "Data from https://worldpopulationreview.com/"
7474
@@ -85,7 +85,7 @@ def do_cities(self, _: cmd2.Statement) -> None:
8585 @cmd2 .with_category (TABLE_CATEGORY )
8686 def do_countries (self , _ : cmd2 .Statement ) -> None :
8787 """Display the countries with the largest population."""
88- table = Table (show_footer = False )
88+ table = Table ()
8989 table .title = "10 Largest Countries by Population 2025"
9090 table .caption = "Data from https://worldpopulationreview.com/ and Wikipedia"
9191
You can’t perform that action at this time.
0 commit comments