Skip to content

Commit 5726793

Browse files
committed
add explainations as for the use of Any with TableFunction class
2 parents 2c75b0d + 4130a7f commit 5726793

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

stubs/cysqlite/cysqlite/__init__.pyi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@ from .exceptions import *
2323
version: Final[str]
2424
__version__: Final[str]
2525
version_info: Final[tuple[int, int, int]]
26-
apilevel: Final[str] = "2.0"
27-
paramstyle: Final[str] = "qmark"
26+
apilevel: Final = "2.0"
27+
paramstyle: Final = "qmark"

stubs/cysqlite/cysqlite/_cysqlite.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ class Connection(_callable_context_manager):
150150
self, full: bool = False, truncate: bool = False, restart: bool = False, name: str | Buffer | None = None
151151
) -> tuple[int, int]: ...
152152
def close(self) -> bool: ...
153-
def commit(self, begin: bool = True) -> None: ...
153+
def commit(self) -> None: ...
154154
def commit_hook(self, fn: Callable[[], None]) -> None: ...
155155
def connect(self) -> bool: ...
156156
def converter(self, data_type: str) -> Callable[[Callable[_P, _T]], Callable[_P, _T]]: ...

0 commit comments

Comments
 (0)