fix: type hint typo

This commit is contained in:
Chaser Huang
2024-10-08 22:02:24 -04:00
committed by Yeicor
parent f95509f4f4
commit e6921144fb

View File

@@ -312,7 +312,7 @@ class YACV:
f.write(self.export(name)[0])
def _resolve_base_texture() -> Optional[(bytes, str)]:
def _resolve_base_texture() -> Optional[Tuple[bytes, str]]:
env_str = os.environ.get("YACV_BASE_TEXTURE")
if env_str is None:
return None