We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35379d3 commit d47887cCopy full SHA for d47887c
src/guidellm/core/request.py
@@ -42,7 +42,7 @@ def number_images(self) -> int:
42
return len(self.images)
43
44
@property
45
- def image_resolution(self) -> List[Tuple[int]]:
+ def image_resolution(self) -> List[Tuple[int, int]]:
46
if self.images is None:
47
return None
48
else:
src/guidellm/utils/images.py
@@ -28,7 +28,7 @@ class ImageDescriptor(Serializable):
28
29
@computed_field # type: ignore[misc]
30
31
- def image_resolution(self) -> Tuple[int]:
+ def image_resolution(self) -> Tuple[int, int]:
32
if self.image is None:
33
34
0 commit comments