remove if TYPE_CHECKING in sqlalchemy stub (#1074)

This isn't needed in typeshed, since the stubs aren't executed.
This commit is contained in:
Jelle Zijlstra
2017-03-22 08:02:38 -07:00
committed by Guido van Rossum
parent df4c5c81e8
commit 8318953a17

View File

@@ -1,8 +1,6 @@
from typing import Any, TYPE_CHECKING
from .result import ResultProxy
if TYPE_CHECKING:
from .base import Connection
from .base import Connection
class Connectable:
def execute(self, object, *multiparams: Any, **params: Any) -> ResultProxy: ...