(s)
| 493 | |
| 494 | |
| 495 | def validate_whiskers(s): |
| 496 | try: |
| 497 | return _listify_validator(validate_float, n=2)(s) |
| 498 | except (TypeError, ValueError): |
| 499 | try: |
| 500 | return float(s) |
| 501 | except ValueError as e: |
| 502 | raise ValueError("Not a valid whisker value [float, " |
| 503 | "(float, float)]") from e |
| 504 | |
| 505 | |
| 506 | def validate_ps_distiller(s): |
nothing calls this directly
no test coverage detected
searching dependent graphs…