SnowEx / snowexsql

A project to access the SnowEx database holding data from the NASA SnowEx campaign
https://snowexsql.readthedocs.io/en/latest/readme.html
GNU General Public License v3.0
23 stars 6 forks source link

`contains` should be inside filter in cheat sheet! #100

Open micahjohnson150 opened 3 weeks ago

micahjohnson150 commented 3 weeks ago

Describe the bug Just a typo in the documentations cheat sheet. In the graupel example of contains in the cheat sheet, contains is chained on the end of a filter which errors out.

To Reproduce

Currently is

qry.filter(LayerData.comments).contains('graupel'))

Should be

qry.filter(LayerData.comments.contains('graupel'))