(user_defined_function_kwargs: Dict[str, Any])
| 88 | |
| 89 | |
| 90 | def get_axis_int(user_defined_function_kwargs: Dict[str, Any]): |
| 91 | axis = user_defined_function_kwargs.get("axis", 0) |
| 92 | |
| 93 | if axis not in {0, 1, "index", "columns"}: |
| 94 | raise ValueError(f"No axis named {axis} for object type DataFrame") |
| 95 | |
| 96 | return {0: 0, 1: 1, "index": 0, "columns": 1}[axis] |
| 97 | |
| 98 | |
| 99 | class WorkerStatus(int, Enum): |
no outgoing calls
no test coverage detected
searching dependent graphs…