Skip to content

Commit 6cf2614

Browse files
Update stubs/cysqlite/cysqlite/_cysqlite.pyi
Co-authored-by: Brian Schubert <brianm.schubert@gmail.com>
1 parent 1612bec commit 6cf2614

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stubs/cysqlite/cysqlite/_cysqlite.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ class Connection(_callable_context_manager):
176176
def executescript(self, sql: str) -> Cursor: ...
177177
def file_control(self, op: int, val: int, name: str | Buffer | None = None) -> int: ...
178178
def finalize_statements(self) -> None: ...
179-
def get_columns(self) -> list[Column]: ...
179+
def get_columns(self, table: str, database: str | None = None) -> list[Column]: ...
180180
def get_foreign_keys(self, table: str, database: str | None = None) -> list[ForeignKey]: ...
181181
def get_foreign_keys_enabled(self) -> int: ...
182182
def get_indexes(self, table: str, database: str | None = None) -> list[Index]: ...

0 commit comments

Comments
 (0)