From 1944c287c8545cf572603dd81346f562cf275c57 Mon Sep 17 00:00:00 2001 From: Huanghe Date: Tue, 30 Jul 2024 22:12:22 -0500 Subject: [PATCH] Make CI/CD happy --- src/ffi_bindings.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ffi_bindings.rs b/src/ffi_bindings.rs index b14f500..2794982 100644 --- a/src/ffi_bindings.rs +++ b/src/ffi_bindings.rs @@ -489,7 +489,7 @@ impl Engine { /// Returns an [`AcceptTokenError`] when the bytes are not accepted. Check the error type docs for more details. #[pyo3(name = "try_accept_new_bytes")] pub fn try_accept_new_bytes_py( - &self, + &mut self, bytes: &[u8], ) -> Result { EngineLike::try_accept_new_bytes(self, bytes)