From 0ceb15c23a02b4522e02fa83c719d0d5517a5990 Mon Sep 17 00:00:00 2001 From: Matt Dawkins Date: Tue, 27 Jan 2026 11:04:03 -0500 Subject: [PATCH] fix: correct pooch download URL for example WAV file The URL https://github.com/Kitware/batbot/example1.wav is not a valid file download URL. GitHub does not serve raw file content at repository root URLs. Use the raw.githubusercontent.com URL pointing to the correct path under examples/. Co-Authored-By: Claude Opus 4.5 --- batbot/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/batbot/__init__.py b/batbot/__init__.py index c415831..1120944 100644 --- a/batbot/__init__.py +++ b/batbot/__init__.py @@ -157,7 +157,7 @@ def example(): if not exists(wav_filepath): wav_filepath = pooch.retrieve( - url=f'https://github.com/Kitware/batbot/{TEST_WAV}', + url=f'https://raw.githubusercontent.com/Kitware/batbot/main/examples/{TEST_WAV}', known_hash=TEST_WAV_HASH, progressbar=True, )