mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 21:14:48 +08:00
psycopg2: Fix the return type of Composable.as_string (#7984)
Signed-off-by: Zixuan James Li <359101898@qq.com>
This commit is contained in:
@@ -2,7 +2,7 @@ from typing import Any
|
||||
|
||||
class Composable:
|
||||
def __init__(self, wrapped) -> None: ...
|
||||
def as_string(self, context) -> None: ...
|
||||
def as_string(self, context) -> str: ...
|
||||
def __add__(self, other): ...
|
||||
def __mul__(self, n): ...
|
||||
def __eq__(self, other): ...
|
||||
|
||||
Reference in New Issue
Block a user