refactor: Remove unused Static import from TUI app

- Static widget is not used in app.py (only in screen files)
- Resolves CodeRabbit nitpick comment
This commit is contained in:
Gnanasaikiran 2025-11-15 17:34:00 +05:30
parent ceaa015c91
commit d263d281a0

View file

@ -5,7 +5,7 @@ Text-based User Interface for managing Cognee knowledge graphs
from typing import ClassVar
from textual.app import App, ComposeResult
from textual.binding import Binding
from textual.widgets import Header, Footer, Static, Button, Markdown
from textual.widgets import Header, Footer, Button, Markdown
from textual.containers import VerticalScroll
from textual.screen import Screen
from textual.events import Key