explicitly specified the SendType and ReturnType paramaters for yield_images

This commit is contained in:
Samuel J. Woodward 2025-01-06 09:43:29 -05:00
parent 9995343e24
commit 2aa8ebfec8

View File

@ -35,7 +35,7 @@ def list_images(path: str) -> List[str]:
return images
def yield_images(path: str) -> Generator[str]:
def yield_images(path: str) -> Generator[str, None, None]:
"""
Yield images in a given path
Args: