We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4025929 + cbe1a9c commit 1979cb5Copy full SHA for 1979cb5
pandas/tests/io/test_sql.py
@@ -237,14 +237,17 @@ def types_table_metadata(dialect: str):
237
"types",
238
metadata,
239
Column("TextCol", TEXT),
240
- Column("DateCol", date_type),
+ # error: Cannot infer type argument 1 of "Column"
241
+ Column("DateCol", date_type), # type: ignore[misc]
242
Column("IntDateCol", Integer),
243
Column("IntDateOnlyCol", Integer),
244
Column("FloatCol", Float),
245
Column("IntCol", Integer),
- Column("BoolCol", bool_type),
246
- Column("IntColWithNull", Integer),
247
- Column("BoolColWithNull", bool_type),
+ Column("BoolCol", bool_type), # type: ignore[misc]
248
+ Column("IntColWithNull", Integer),
249
250
+ Column("BoolColWithNull", bool_type), # type: ignore[misc]
251
)
252
return types
253
0 commit comments