Skip to content

Commit

Permalink
revert edit
Browse files Browse the repository at this point in the history
  • Loading branch information
willmcgugan committed Aug 9, 2024
1 parent 04d8a7a commit 80afcf2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions examples/markdown.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
from sys import argv

from textual.app import App, ComposeResult
from textual.binding import Binding
from textual.reactive import var
from textual.widgets import Footer, MarkdownViewer

Expand All @@ -13,7 +12,7 @@ class MarkdownApp(App):
"""A simple Markdown viewer application."""

BINDINGS = [
Binding("t", "toggle_table_of_contents", "TOC"),
("t", "toggle_table_of_contents", "TOC"),
("b", "back", "Back"),
("f", "forward", "Forward"),
]
Expand Down

0 comments on commit 80afcf2

Please sign in to comment.