Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions stubs/psycopg2/psycopg2/sql.pyi
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from _typeshed import SupportsIter
from collections.abc import Iterable, Iterator
from typing import Any, Generic, TypeVar

Expand Down Expand Up @@ -27,7 +26,7 @@ class SQL(Composable):
@property
def string(self) -> str: ...
def format(self, *args: Composable, **kwargs: Composable) -> Composed: ...
def join(self, seq: SupportsIter[Composable]) -> Composed: ...
def join(self, seq: Iterable[Composable]) -> Composed: ...

class Identifier(Composable):
def __init__(self, *strings: str) -> None: ...
Expand Down