From 2219a148fd1945c1b1788937ce67e266c54fe4ec Mon Sep 17 00:00:00 2001 From: Andrew Conlin Date: Thu, 19 Dec 2024 09:43:22 +0000 Subject: [PATCH] [2024-12-19] Suppress warning about implicit default --- src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib.rs b/src/lib.rs index 580be2c..1bd593c 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -51,6 +51,7 @@ mod tictoc { Ok(Init::new()) } + #[pyo3(signature = (tic=None))] fn toc(&mut self, tic: Option) -> PyResult { let elapsed_time = match tic { Some(ref tic) => tic.time.elapsed(),