def get_shot_raw(shot_id):
shot_type = get_shot_type()
try:
shot = Entity.get_by(
entity_type_id=shot_type["id"],
id=shot_id
)
except StatementError:
raise SequenceNotFoundException
if shot is None:
raise ShotNotFoundException
return shot
评论列表
文章目录