Replace int | SupportsIndex with SupportsIndex (#15389)

This commit is contained in:
Guo Ci
2026-02-09 10:38:28 -05:00
committed by GitHub
parent d380c3d21d
commit da6e5e9d8a
2 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -352,7 +352,7 @@ class Connection:
self, name: str, num_params: int, aggregate_class: Callable[[], _WindowAggregateClass] | None, /
) -> None: ...
def create_collation(self, name: str, callback: Callable[[str, str], int | SupportsIndex] | None, /) -> None: ...
def create_collation(self, name: str, callback: Callable[[str, str], SupportsIndex] | None, /) -> None: ...
def create_function(
self, name: str, narg: int, func: Callable[..., _SqliteData] | None, *, deterministic: bool = False
) -> None: ...