From 85554e21697dd3e8ec6c0fddf92ea643030fec0a Mon Sep 17 00:00:00 2001 From: "Waylon S. Walker" Date: Thu, 29 Feb 2024 15:05:57 -0600 Subject: [PATCH] wip --- pyproject.toml | 6 +++--- sqlmodel_base/base.py | 7 ------- 2 files changed, 3 insertions(+), 10 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index e567efa..ebb2e6e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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" diff --git a/sqlmodel_base/base.py b/sqlmodel_base/base.py index f12571a..054ee62 100644 --- a/sqlmodel_base/base.py +++ b/sqlmodel_base/base.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