blob: b1cc192e89fb85e1c277368f03cbc4146feaaf2f [file] [log] [blame]
Tor Norbye3a2425a2013-11-04 10:16:08 -08001# PY-1138
2from models import ChartRequest
3from components.dbutil import DbSession
4
5def foo(requestId):
6 with DbSession() as db:
7 req = db.query(ChartRequest).get(requestId)
8 assert req is not None, u"Invalid request"
9 print req
10