diff --git a/db/jb_operations.py b/db/jb_operations.py index 4d462efc..547b7670 100644 --- a/db/jb_operations.py +++ b/db/jb_operations.py @@ -14,8 +14,6 @@ db_host = os.getenv("POSTGRES_DATABASE_HOST") # localhost for local upload of data db_port = os.getenv("POSTGRES_DATABASE_PORT") -print(db_name, db_user, db_password, db_host, db_port) - # Construct the SQLAlchemy connection URL using URL class DATABASE_URL = f"postgresql://{db_user}:{db_password}@{db_host}:{db_port}/{db_name}"