Creates a single string from object ids.
(object_list)
| 560 | |
| 561 | |
| 562 | def object_list_uid(object_list): |
| 563 | """Creates a single string from object ids.""" |
| 564 | object_list = nest.flatten(object_list) |
| 565 | return ', '.join([str(abs(id(x))) for x in object_list]) |
| 566 | |
| 567 | |
| 568 | def to_snake_case(name): |