2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-19 21:45:39 +00:00

Remove old debug messages

This commit is contained in:
Oliver Walters
2019-07-11 12:56:10 +10:00
parent 377b2f94ce
commit 23d19d6784
3 changed files with 1 additions and 6 deletions

View File

@ -176,13 +176,12 @@ class BomUploadManager:
try:
# Excel import casts number-looking-items into floats, which is annoying
if item == int(item) and not str(item) == str(int(item)):
print("converting", item, "to", int(item))
data[idx] = int(item)
except ValueError:
pass
# Skip empty rows
if empty:
print("Empty - continuing")
continue
row = {