class Pronto::Bitbucket

def pull_comments(sha)

def pull_comments(sha)
  @comment_cache["#{pull_id}/#{sha}"] ||= begin
    client.pull_comments(slug, pull_id).map do |comment|
      Comment.new(sha, comment.content, comment.filename, comment.line_to)
    end
  end
end