Skip to content

Commit 874aa35

Browse files
committed
fix: remove unused imports from display.py
1 parent c5bb322 commit 874aa35

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

src/sample_python_app/core/display.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff 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(

0 commit comments

Comments
 (0)