`find()` doesn't seem to be able to handle `None` values. Example: ```python from jsonpath_ng.ext.parser import parse data = [{"test": True}, {"test": None}] query = $[?(test == true)] parser = parse(query) parser.find(data) ``` Causes the following error: ```sh TypeError: int() argument must be a string, a bytes-like object or a real number, not 'NoneType' ```