Skip to content

Commit

Permalink
Another lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tyler-romero committed Dec 3, 2024
1 parent 9a322c8 commit aaf2175
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/groundlight/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -987,7 +987,7 @@ def wait_for_confident_result(
image_query = self.get_image_query(image_query)
confidence_threshold = self.get_detector(image_query.detector_id).confidence_threshold

confidence_above_thresh = partial(iq_is_confident, confidence_threshold=confidence_threshold)
confidence_above_thresh = partial(iq_is_confident, confidence_threshold=confidence_threshold) # type: ignore
return self._wait_for_result(image_query, condition=confidence_above_thresh, timeout_sec=timeout_sec)

def wait_for_ml_result(self, image_query: Union[ImageQuery, str], timeout_sec: float = 30.0) -> ImageQuery:
Expand Down

0 comments on commit aaf2175

Please sign in to comment.