We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6083f9 commit 15ceaccCopy full SHA for 15ceacc
1 file changed
test/files/column_arguments2.py
@@ -77,9 +77,6 @@
77
Column("name", ForeignKey("a.id"), type_=Integer())
78
79
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
+# These seems supported now
82
Column(Integer, ForeignKey("a.id"), type_=String)
83
-
84
-# EXPECTED_MYPY: No overload variant of "Column" matches argument types "str", "ForeignKey", "str" # noqa E501
85
Column("name", ForeignKey("a.id"), name="String")
0 commit comments