in backend-printing/helper/storage.py [0:0]
def put_entity(self, table_name, entity):
"""Put an entity to the table
Args:
table_name (string): table name
entity (dict): entity to put
"""
try:
return self.table_service_client.upsert_entity(entity=entity)
except Exception as e:
raise Exception(f"Error occurred while putting entity: {e}")