class Dependabot::Uv::FileUpdater::LockFileUpdater

def write_temporary_dependency_files(pyproject_content)

def write_temporary_dependency_files(pyproject_content)
  dependency_files.each do |file|
    path = file.name
    FileUtils.mkdir_p(Pathname.new(path).dirname)
    File.write(path, file.content)
  end
  # Overwrite the pyproject with updated content
  File.write("pyproject.toml", pyproject_content)
end