Skip to content

Commit ef4ad12

Browse files
committed
Fix type hint
1 parent 344f4c9 commit ef4ad12

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/recnetpy/managers/image_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ async def get(self, name: str) -> Optional['Image']:
2727
return None
2828

2929

30-
async def get_many(self, names: List[str]) -> Optional['Image']:
30+
async def get_many(self, names: List[str]) -> List['Image']:
3131
"""
3232
Gets a list of images by a list of image names, and returns
3333
a list of image object.

0 commit comments

Comments
 (0)