Skip to content

Commit 4d4d96c

Browse files
committed
Fix lint error
1 parent c7cd791 commit 4d4d96c

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

core/deduplication.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,4 +75,4 @@ def _should_drop_query_parameter(key: str) -> bool:
7575

7676

7777
def _is_default_port(scheme: str, port: int) -> bool:
78-
return (scheme == "http" and port == 80) or (scheme == "https" and port == 443)
78+
return (scheme == "http" and port == 80) or (scheme == "https" and port == 443)

skills/deduplication/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ Decide whether two content items describe the same underlying source article.
1111
- If the items look related but meaningfully different, return `is_duplicate=false`.
1212
- `confidence` must stay between 0 and 1.
1313

14-
Return structured JSON with `is_duplicate`, `confidence`, and `explanation`.
14+
Return structured JSON with `is_duplicate`, `confidence`, and `explanation`.

0 commit comments

Comments
 (0)