Return a function that formats the value given to it with the given label.
(label: str)
| 81 | |
| 82 | |
| 83 | def id_formatter(label: str): |
| 84 | """ |
| 85 | Return a function that formats the value given to it with the given label. |
| 86 | """ |
| 87 | return lambda value: format_with_label(label, value) |
| 88 | |
| 89 | |
| 90 | DTYPE_NAMES = { |
nothing calls this directly
no test coverage detected