(context)
| 66 | |
| 67 | |
| 68 | def visit_Call(context): |
| 69 | keyword = {} |
| 70 | for x in context.node["keywords"]: |
| 71 | keyword[x["arg"]] = x["value"] |
| 72 | |
| 73 | new_node = Call(context.node["func"], context.node["args"], keyword) |
| 74 | new_node.enrich_from_previous(context.node) |
| 75 | context.replace(new_node) |
| 76 | return new_node |
| 77 | |
| 78 | |
| 79 | def visit_Assign(context): |
nothing calls this directly
no test coverage detected