From 1e6952c2b24753c6c41261b76247b7b615ee4c95 Mon Sep 17 00:00:00 2001 From: NinjaCheetah <58050615+NinjaCheetah@users.noreply.github.com> Date: Thu, 12 Dec 2024 21:54:00 -0500 Subject: [PATCH] Fixed invalid default value for nus.download_title() --- src/libWiiPy/title/nus.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libWiiPy/title/nus.py b/src/libWiiPy/title/nus.py index ddfca37..5e63704 100644 --- a/src/libWiiPy/title/nus.py +++ b/src/libWiiPy/title/nus.py @@ -15,7 +15,7 @@ _nus_endpoint = ["http://nus.cdn.shop.wii.com/ccs/download/", "http://ccs.cdn.wu def download_title(title_id: str, title_version: int = None, wiiu_endpoint: bool = False, - endpoint_override: str = False) -> Title: + endpoint_override: str = None) -> Title: """ Download an entire title and all of its contents, then load the downloaded components into a Title object for further use. This method is NOT recommended for general use, as it has absolutely no verbosity. It is instead