(err: SemverError)
| 33 | |
| 34 | impl From<SemverError> for PyErr { |
| 35 | fn from(err: SemverError) -> PyErr { |
| 36 | crate::types::ALPMError::new_err(err.0.to_string()) |
| 37 | } |
| 38 | } |
| 39 | |
| 40 | #[pyclass(frozen, eq, ord, from_py_object)] |
nothing calls this directly
no outgoing calls
no test coverage detected