File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ def patch_all(**patch_modules):
5858
5959 :param dict \**patch_modules: Override whether particular modules are patched or not.
6060
61- >>> patch_all({' redis': False, ' cassandra': False} )
61+ >>> patch_all(redis= False, cassandra= False)
6262 """
6363 modules = PATCH_MODULES .copy ()
6464 modules .update (patch_modules )
@@ -71,7 +71,7 @@ def patch(raise_errors=True, **patch_modules):
7171 :param bool raise_errors: Raise error if one patch fail.
7272 :param dict \**patch_modules: List of modules to patch.
7373
74- >>> patch({' psycopg': True, ' elasticsearch': True} )
74+ >>> patch(psycopg= True, elasticsearch= True)
7575 """
7676 modules = [m for (m , should_patch ) in patch_modules .items () if should_patch ]
7777 count = 0
You can’t perform that action at this time.
0 commit comments