class Dependabot::Uv::FileFetcher
def fetch_project_file(path)
def fetch_project_file(path) project_files = [] path = cleanpath(File.join(path, "pyproject.toml")) unless sdist_or_wheel?(path) return [] if path == "pyproject.toml" && pyproject project_files << fetch_file_from_host( path, fetch_submodules: true ).tap { |f| f.support_file = true } project_files end