Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
CaselIT committed Aug 10, 2022
1 parent f6083f9 commit 15ceacc
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions test/files/column_arguments2.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,6 @@
Column("name", ForeignKey("a.id"), type_=Integer())


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

# EXPECTED_MYPY: No overload variant of "Column" matches argument types "str", "ForeignKey", "str" # noqa E501
Column("name", ForeignKey("a.id"), name="String")

0 comments on commit 15ceacc

Please sign in to comment.