Skip to content

Commit 8318953

Browse files
JelleZijlstragvanrossum
authored andcommitted
remove if TYPE_CHECKING in sqlalchemy stub (#1074)
This isn't needed in typeshed, since the stubs aren't executed.
1 parent df4c5c8 commit 8318953

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

third_party/2and3/sqlalchemy/engine/interfaces.pyi

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
from typing import Any, TYPE_CHECKING
22
from .result import ResultProxy
3-
4-
if TYPE_CHECKING:
5-
from .base import Connection
3+
from .base import Connection
64

75
class Connectable:
86
def execute(self, object, *multiparams: Any, **params: Any) -> ResultProxy: ...

0 commit comments

Comments
 (0)