File tree Expand file tree Collapse file tree
src/sample_python_app/core Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -68,7 +68,6 @@ def display_astronomical_data(astro):
6868 sunset_time_art = Figlet (font = "big" , width = 100 ).renderText (sunset_time_str )
6969 sunset_time_text = Text (sunset_time_art )
7070 sunset_time_text .stylize ("bold blue" )
71- from rich .table import Table
7271
7372 astro_table = Table (show_header = True , header_style = "bold magenta" , box = None )
7473 astro_table .add_column ("Event" , style = "bold #ff00cc" )
@@ -101,9 +100,8 @@ def display_astronomical_data(astro):
101100 )
102101
103102 # Compose all parts into a single renderable for the panel
104- from rich .console import Group
105-
106103 from rich .columns import Columns
104+ from rich .console import Group
107105
108106 # Combine sunrise and sunset figlet art and times in the same row
109107 sun_figlet_row = Columns (
You can’t perform that action at this time.
0 commit comments