Skip to content

Commit 5fc561b

Browse files
committed
fix: corrected type annotation
1 parent a288fa8 commit 5fc561b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

weblate/checks/consistency.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ def check_component(self, component: Component) -> Iterable[Unit]:
259259
)
260260

261261
# Filter out case differing source for case insensitive languages
262-
found: dict[tuple(str, str), set[str]] = defaultdict(set)
262+
found: dict[tuple[str, str], set[str]] = defaultdict(set)
263263
remaining: list[tuple[str, Unit]] = []
264264
for unit in result:
265265
if not unit.translation.language.is_case_sensitive():

0 commit comments

Comments
 (0)