(obj_list, source, target)
| 263 | |
| 264 | @staticmethod |
| 265 | def replace(obj_list, source, target): |
| 266 | for i in six.moves.range(len(obj_list)): |
| 267 | if obj_list[i] == source: |
| 268 | obj_list[i] = target |
| 269 | |
| 270 | @staticmethod |
| 271 | def transpose_shape(shape, order): |
no test coverage detected