(db, database, kwargs)
| 37 | return result |
| 38 | |
| 39 | def find_one(db, database, kwargs): |
| 40 | x = db[database].find_one(**kwargs) |
| 41 | return x |
| 42 | |
| 43 | def delete_many(db, database, kwargs): |
| 44 | x = db[database].delete_many(**kwargs) |
nothing calls this directly
no outgoing calls
no test coverage detected