Skip to content

Commit 09985d5

Browse files
committed
snapshot
1 parent 228c1c0 commit 09985d5

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
from textual.app import App, ComposeResult
2+
from textual.widgets import TextArea
3+
4+
FAIL_TEXT = "x "
5+
6+
7+
class CodeApp(App):
8+
def compose(self) -> ComposeResult:
9+
yield TextArea(FAIL_TEXT, soft_wrap=False, show_line_numbers=True)
10+
11+
12+
if __name__ == "__main__":
13+
app = CodeApp()
14+
app.run()

0 commit comments

Comments
 (0)