Remove debug print statements.

This commit is contained in:
Yaro Kasear 2025-07-14 09:07:52 -05:00
parent 76b6882d71
commit 0533f09851
10 changed files with 0 additions and 46 deletions

View file

@ -42,7 +42,6 @@ def upload_image():
# Save file
rel_path = save_image(file, model)
print(rel_path)
# Create Image row
image = Image(filename=rel_path, caption=caption)

View file

@ -41,7 +41,6 @@ def index():
'Deployed','Inoperable', 'Partially Inoperable',
'Unverified', 'Working'
]
print(df)
if 'condition' in df.columns:
pivot = df['condition'].value_counts().reindex(expected_conditions, fill_value=0)
else:

View file

@ -33,7 +33,6 @@ def worklog_entry(id):
item_query = db.session.query(Inventory)
items = eager_load_inventory_relationships(item_query).all()
items = sorted(items, key=lambda i: i.identifier)
print(log)
if log:
title = f'Work Log - Entry #{id}'