app: we don't care about "number" for now
This commit is contained in:
parent
e5bb663ee8
commit
48bb3055f3
3 changed files with 3 additions and 6 deletions
|
|
@ -23,7 +23,7 @@ logging.basicConfig(
|
|||
)
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
TEILCHEN_DATA_HEADER = "pk Name Description Number Tags".split()
|
||||
TEILCHEN_DATA_HEADER = "pk Name Description Tags".split()
|
||||
|
||||
|
||||
class SammlerApp(App):
|
||||
|
|
@ -73,7 +73,7 @@ class SearchBar(Static):
|
|||
|
||||
teilchen = await add_to_database(tc, engine)
|
||||
self.screen.query_one(DataTable).add_row(
|
||||
teilchen.id, teilchen.name, teilchen.description, teilchen.number, teilchen.tags
|
||||
teilchen.id, teilchen.name, teilchen.description, teilchen.tags
|
||||
)
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue