Skip to content

Commit dc1539a

Browse files
committed
Remove unused imports
1 parent 4cf89ba commit dc1539a

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

tools/config_editor/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
from textual.app import App, ComposeResult
1010
from textual.containers import Container
11-
from textual.widgets import Button, Footer, Header, RichLog, Label
11+
from textual.widgets import Button, Header, RichLog, Label
1212

1313
from targets import TargetsScreen
1414
from editor import EditorScreen

tools/config_editor/editor.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
from textual.app import ComposeResult
22
from textual.containers import Container, VerticalScroll, Horizontal
33
from textual.screen import Screen
4-
from textual.reactive import var
5-
from textual.widgets import DirectoryTree, Footer, Header, TextArea, RichLog, Button
4+
from textual.widgets import DirectoryTree, Header, TextArea, Button
65

76
class EditorScreen(Screen):
87
current_file = ""

tools/config_editor/targets.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from textual.app import ComposeResult
22
from textual.containers import VerticalScroll, Container, Horizontal
33
from textual.screen import Screen
4-
from textual.widgets import Footer, Header, Checkbox, Button
4+
from textual.widgets import Header, Checkbox, Button
55

66
class TargetsScreen(Screen[dict]):
77
temp_target_dict = {

0 commit comments

Comments
 (0)