(identifier)
| 8 | |
| 9 | |
| 10 | def get(identifier): |
| 11 | if hasattr(identifier, '__call__'): |
| 12 | return identifier |
| 13 | else: |
| 14 | return get_from_module(identifier, globals(), 'distances') |
| 15 | |
| 16 | |
| 17 | def euclidean(a, b): |
nothing calls this directly
no test coverage detected