fn get_avro_schema()

in python/src/internal.rs [291:298]


    fn get_avro_schema(&self, py: Python) -> PyResult<String> {
        py.allow_threads(|| {
            let avro_schema = rt()
                .block_on(self.inner.get_avro_schema())
                .map_err(PythonError::from)?;
            Ok(avro_schema)
        })
    }