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 352e0e9 commit a572a68Copy full SHA for a572a68
1 file changed
bookmark_checker/core/dedupe.py
@@ -3,6 +3,9 @@
3
from collections import defaultdict
4
from typing import TYPE_CHECKING, Any
5
6
+from bookmark_checker.core.models import Bookmark, BookmarkCollection
7
+from bookmark_checker.core.utils import domain_from_url, normalize_whitespace
8
+
9
if TYPE_CHECKING:
10
from rapidfuzz import fuzz as fuzz_module
11
else:
@@ -13,9 +16,6 @@
13
16
14
17
fuzz = fuzz_module
15
18
-from bookmark_checker.core.models import Bookmark, BookmarkCollection
-from bookmark_checker.core.utils import domain_from_url, normalize_whitespace
-
19
20
def annotate_canonical(collection: BookmarkCollection) -> None:
21
"""
0 commit comments