Skip to content

Commit a2cb033

Browse files
authored
Fix syntax error
1 parent d98aab5 commit a2cb033

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/sqlite3/__init__.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ _AdaptedInputData: TypeAlias = _SqliteData | Any
222222
_Parameters: TypeAlias = SupportsLenAndGetItem[_AdaptedInputData] | Mapping[str, _AdaptedInputData]
223223
# Controls the legacy transaction handling mode of sqlite3.
224224
_IsolationLevel: TypeAlias = Literal["DEFERRED", "EXCLUSIVE", "IMMEDIATE"] | None
225-
_RowFactoryOptions: TypeAlias = type[Row] | Callable[[Cursor, tuple[Any, ...], object] | None
225+
_RowFactoryOptions: TypeAlias = type[Row] | Callable[[Cursor, tuple[Any, ...]], object] | None
226226

227227
@type_check_only
228228
class _AnyParamWindowAggregateClass(Protocol):

0 commit comments

Comments
 (0)