Skip to content

Commit 15ceacc

Browse files
committed
fix tests
1 parent f6083f9 commit 15ceacc

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

test/files/column_arguments2.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,6 @@
7777
Column("name", ForeignKey("a.id"), type_=Integer())
7878

7979

80-
# We are no longer able to detect there, as the kwargs must stay in place.
81-
# EXPECTED_MYPY: No overload variant of "Column" matches argument types "Type[Integer]", "ForeignKey", "Type[String]" # noqa E501
80+
# These seems supported now
8281
Column(Integer, ForeignKey("a.id"), type_=String)
83-
84-
# EXPECTED_MYPY: No overload variant of "Column" matches argument types "str", "ForeignKey", "str" # noqa E501
8582
Column("name", ForeignKey("a.id"), name="String")

0 commit comments

Comments
 (0)