diff --git a/happypose/toolbox/utils/download.py b/happypose/toolbox/utils/download.py index 865dfc5f..8ca2e210 100755 --- a/happypose/toolbox/utils/download.py +++ b/happypose/toolbox/utils/download.py @@ -288,11 +288,9 @@ async def main(): ) if args.examples: for example in args.examples: - to_dl.append( - ( - f"examples/{example}", - LOCAL_DATA_DIR / "examples", - ) + to_dl.append((f"examples/{example}.zip", DOWNLOAD_DIR)) + to_unzip.append( + (DOWNLOAD_DIR / f"{example}.zip", LOCAL_DATA_DIR / "examples") ) # logger.info(f"{to_dl=}")