(cls, key)
| 660 | """ |
| 661 | |
| 662 | def __getattr__(cls, key): |
| 663 | if key.startswith("_") and key not in ["_load_connected_pipes", "_is_onnx"]: |
| 664 | return super().__getattr__(cls, key) |
| 665 | requires_backends(cls, cls._backends) |
| 666 | |
| 667 | |
| 668 | # This function was copied from: https://github.com/huggingface/accelerate/blob/874c4967d94badd24f893064cc3bef45f57cadf7/src/accelerate/utils/versions.py#L319 |
nothing calls this directly
no test coverage detected