if len(ident) > self.max_identifier_length:
TypeError: object of type 'NoneType' has no len()
from models import Product
products = Product.query.with_entities(http://Product.name/..., Product.price, Product.image_url).all()
print(products)
print(products[0].price)
from models import Product
products = Product.query.with_entities(Product.name, Product.price, Product.image_url).all()
print(products)
print(products[0].price)
print(type(products[0]))
session.modified = True