Skip to content

Commit

Permalink
fix: fix mypy error in unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
raphael0202 committed Feb 13, 2024
1 parent b2333e9 commit b3446f5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/integration/insights/test_extraction.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,10 @@ def __init__(self, raw_result: ObjectDetectionRawResult):
self.raw_result = raw_result

def detect_from_image(
self, image: Image.Image, output_image: bool = False
self,
image: Image.Image,
output_image: bool = False,
triton_uri: str | None = None,
) -> ObjectDetectionRawResult:
return self.raw_result

Expand Down

0 comments on commit b3446f5

Please sign in to comment.