MCPcopy Index your code
hub / github.com/mongodb/mongo-python-driver / camel_to_snake_args

Function camel_to_snake_args

test/utils_shared.py:436–440  ·  view source on GitHub ↗
(arguments)

Source from the content-addressed store, hash-verified

434
435
436def camel_to_snake_args(arguments):
437 for arg_name in list(arguments):
438 c2s = camel_to_snake(arg_name)
439 arguments[c2s] = arguments.pop(arg_name)
440 return arguments
441
442
443def snake_to_camel(snake):

Calls 2

camel_to_snakeFunction · 0.85
popMethod · 0.45

Tested by

no test coverage detected