From 76fd8ee1805c8361646ab93cab4483d72cb04e4b Mon Sep 17 00:00:00 2001 From: Lucas Mathews Date: Sun, 19 May 2024 19:51:21 +0200 Subject: [PATCH] removed unused references --- database.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/database.py b/database.py index ac3ba6a..b1e9fba 100644 --- a/database.py +++ b/database.py @@ -22,11 +22,8 @@ print(f"Database file set to: {db_url}") # Creates the database engine (does not create the database file if it already exists) engine = create_engine(db_url, echo=True) -#Import Classes +#Import base class from class_base import Base # Imports the base class required by SQLAlchemy -from class_client import Client -from class_account import Account -from class_transaction import Transaction # Create the tables in the database Base.metadata.create_all(bind=engine) # Creates the tables in the database from the classes