From 8b59c38824c67eedfd723a0a61536d5bb2fac05b Mon Sep 17 00:00:00 2001 From: tigerros Date: Mon, 23 Sep 2024 13:15:10 +0200 Subject: [PATCH] Update uci_connection.rs --- src/uci_connection.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/uci_connection.rs b/src/uci_connection.rs index 8afa528..a3313e6 100644 --- a/src/uci_connection.rs +++ b/src/uci_connection.rs @@ -230,6 +230,8 @@ impl EngineConnection { } } + #[allow(clippy::missing_panics_doc)] + #[allow(clippy::missing_errors_doc)] /// Equivalent to the [`go`] function, but doesn't store a vector of info messages, /// and returns only the last one instead. pub async fn go_only_last_info(&mut self, message: GoMessage) -> io::Result<(Option, BestMoveMessage)> {