Skip to content

Commit 816b47c

Browse files
authored
remove unneeded Interator base class from sqlite3.Cursor (#12813)
1 parent 1fb6ebf commit 816b47c

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
@@ -397,7 +397,7 @@ class Connection:
397397
self, type: type[BaseException] | None, value: BaseException | None, traceback: TracebackType | None, /
398398
) -> Literal[False]: ...
399399

400-
class Cursor(Iterator[Any]):
400+
class Cursor:
401401
arraysize: int
402402
@property
403403
def connection(self) -> Connection: ...

0 commit comments

Comments
 (0)