Skip to content

Commit 88250d8

Browse files
author
Auto-format Bot
committed
Automatically reformatting code
1 parent 32d50f0 commit 88250d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/groundlight/internalapi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def iq_is_confident(iq: ImageQuery, confidence_threshold: float) -> bool:
7171
if not iq.result or not iq.result.confidence:
7272
return False
7373
return iq.result.confidence >= confidence_threshold # type: ignore
74-
except Exception as e:
74+
except Exception:
7575
if not iq.result or not iq.result["confidence"]:
7676
return False
7777
return iq.result["confidence"] >= confidence_threshold # type: ignore

0 commit comments

Comments
 (0)