Remove comments, simplify test

This commit is contained in:
Darren Burns
2022-10-24 14:51:40 +01:00
parent 9632e76159
commit 041bb35014
3 changed files with 18 additions and 14 deletions

View File

@@ -2,7 +2,7 @@ import csv
import io
from textual.app import App, ComposeResult
from textual.widgets import DataTable
from textual.widgets import DataTable, Header
CSV = """lane,swimmer,country,time
4,Joseph Schooling,Singapore,50.39
@@ -17,6 +17,7 @@ CSV = """lane,swimmer,country,time
class TableApp(App):
def compose(self) -> ComposeResult:
yield Header()
yield DataTable()
def on_mount(self) -> None: