Run mypy against tests/ too, refs #37

This commit is contained in:
Simon Willison 2021-08-18 14:48:05 -07:00
commit c62363ebdc
4 changed files with 5 additions and 5 deletions

View file

@ -197,7 +197,7 @@ if np:
# If pandas is available, add more types
if pd:
COLUMN_TYPE_MAPPING.update({pd.Timestamp: "TEXT"})
COLUMN_TYPE_MAPPING.update({pd.Timestamp: "TEXT"}) # type: ignore
class AlterError(Exception):