class Dependabot::Clients::Bitbucket

def fetch_file_contents(repo, commit, path)

def fetch_file_contents(repo, commit, path)
  path = "#{repo}/src/#{commit}/#{path.gsub(%r{/+$}, '')}"
  response = get(base_url + path)
  response.body
end