psycopg2: Fix the return type of Composable.as_string (#7984)

Signed-off-by: Zixuan James Li <359101898@qq.com>
This commit is contained in:
PIG208
2022-05-29 18:15:56 -04:00
committed by GitHub
parent b2aaed1e68
commit 5be7976fe3

View File

@@ -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): ...