Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove use of eval() from search.py (#4887)
Use `json.loads()` instead. ### What problem does this PR solve? Using `eval()` can lead to code injections. I think this loads a JSON field, right? If yes, why is this done via `eval()` and not `json.loads()`? ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue)
- Loading branch information