class Dependabot::Uv::FileParser::PyprojectFilesParser

def parsed_pyproject

def parsed_pyproject
  @parsed_pyproject ||= T.let(TomlRB.parse(T.must(pyproject).content), T.untyped)
rescue TomlRB::ParseError, TomlRB::ValueOverwriteError
  raise Dependabot::DependencyFileNotParseable, T.must(pyproject).path
end