You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The types for in main/stubs/peewee/peewee.pyi are incorrect for _HashableSource and ColumnBase, specifically for the functions __eq__ and __ne__ the return types are set as bool when they should be peewee's Expression class for ColumnBase and for Expression | bool for _HashableSource (or left as Incomplete) as seen here in peewee's repo: https://github.com/coleifer/peewee/blob/2b2e876edf686f3f4ddf5f36df9b978f42504082/peewee.py#L1244
It appears these types were incorrectly added in this commit: 11b842c
The text was updated successfully, but these errors were encountered:
The types for in
main/stubs/peewee/peewee.pyi
are incorrect for_HashableSource
andColumnBase
, specifically for the functions__eq__
and__ne__
the return types are set asbool
when they should be peewee'sExpression
class forColumnBase
and forExpression | bool
for_HashableSource
(or left asIncomplete
) as seen here in peewee's repo: https://github.com/coleifer/peewee/blob/2b2e876edf686f3f4ddf5f36df9b978f42504082/peewee.py#L1244It appears these types were incorrectly added in this commit: 11b842c
The text was updated successfully, but these errors were encountered: