remove debug

This commit is contained in:
Will McGugan
2023-02-15 11:24:19 +00:00
parent 6531901442
commit 10bd8b4366

View File

@@ -1,7 +1,6 @@
from pathlib import Path from pathlib import Path
from textual.app import App, ComposeResult from textual.app import App, ComposeResult
from textual.binding import Binding
from textual.reactive import var from textual.reactive import var
from textual.widgets import Footer, MarkdownViewer from textual.widgets import Footer, MarkdownViewer
@@ -11,7 +10,6 @@ class MarkdownApp(App):
("t", "toggle_table_of_contents", "TOC"), ("t", "toggle_table_of_contents", "TOC"),
("b", "back", "Back"), ("b", "back", "Back"),
("f", "forward", "Forward"), ("f", "forward", "Forward"),
Binding("s", "screenshot", "Screenshot", show=False),
] ]
path = var(Path(__file__).parent / "demo.md") path = var(Path(__file__).parent / "demo.md")