We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
psycopg2.sql.SQL.join
1 parent bbd9dd1 commit 0ea0432Copy full SHA for 0ea0432
stubs/psycopg2/psycopg2/sql.pyi
@@ -1,4 +1,3 @@
1
-from _typeshed import SupportsIter
2
from collections.abc import Iterable, Iterator
3
from typing import Any, Generic, TypeVar
4
@@ -27,7 +26,7 @@ class SQL(Composable):
27
26
@property
28
def string(self) -> str: ...
29
def format(self, *args: Composable, **kwargs: Composable) -> Composed: ...
30
- def join(self, seq: SupportsIter[Composable]) -> Composed: ...
+ def join(self, seq: Iterable[Composable]) -> Composed: ...
31
32
class Identifier(Composable):
33
def __init__(self, *strings: str) -> None: ...
0 commit comments