wip
This commit is contained in:
parent
527ecc4062
commit
85554e2169
2 changed files with 3 additions and 10 deletions
|
|
@ -27,9 +27,9 @@ classifiers = [
|
|||
dependencies = [ 'rich', 'sqlmodel', 'typer' ]
|
||||
|
||||
[project.urls]
|
||||
Documentation = "https://github.com/unknown/sqlmodel-base#readme"
|
||||
Issues = "https://github.com/unknown/sqlmodel-base/issues"
|
||||
Source = "https://github.com/unknown/sqlmodel-base"
|
||||
Documentation = "https://github.com/waylonwalker/sqlmodel-base#readme"
|
||||
Issues = "https://github.com/waylonwalker/sqlmodel-base/issues"
|
||||
Source = "https://github.com/waylonwalker/sqlmodel-base"
|
||||
|
||||
[tool.hatch.version]
|
||||
path = "sqlmodel_base/__about__.py"
|
||||
|
|
|
|||
|
|
@ -127,13 +127,6 @@ def create_heroes():
|
|||
hero_2 = Hero(name="Spider-Boy", secret_name="Pedro Parqueador").create()
|
||||
hero_3 = Hero(name="Rusty-Man", secret_name="Tommy Sharp", age=48).create()
|
||||
|
||||
# with Session(engine) as session:
|
||||
# session.add(hero_1)
|
||||
# session.add(hero_2)
|
||||
# session.add(hero_3)
|
||||
#
|
||||
# session.commit()
|
||||
|
||||
|
||||
def page_heroes():
|
||||
next_page = 1
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue