pudo / dataset

Easy-to-use data handling for SQL data stores with support for implicit table creation, bulk loading, and transactions.
https://dataset.readthedocs.org/
MIT License
4.76k stars 297 forks source link

Warn if user accidentally uses set as advanced filter? #421

Open void4 opened 1 year ago

void4 commented 1 year ago

Sets can never be values to be searched for, right?

I accidentally used

table.find(value={'<=', 10})

instead of

table.find(value={'<=': 10})

a tiny mistake which cost me quite some time ^^