Remove debug print statements.
This commit is contained in:
parent
76b6882d71
commit
0533f09851
10 changed files with 0 additions and 46 deletions
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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:
|
||||
|
|
|
|||
|
|
@ -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}'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue