-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
uses ast.literal_eval() over eval() #61
uses ast.literal_eval() over eval() #61
Conversation
@davidlatwe can you please check from your side as I'm successful passes tests locally on the specific ones that are failing on the CI so may be something to do with github?
|
Hey @madeinoz67 , sorry for delay. I found that these two tests failed when Currently not sure why (not seeing anything related in pymongo changelog yet), but def not because of this PR. Will file an issue and resolve it in another PR. Cheers 🍻 Update |
|
static security checking of codebase using Bandit revealed use of unsecure eval() function.
Have implemented ast.literal_eval() in its place