diff options
author | 2024-02-05 00:26:47 +0100 | |
---|---|---|
committer | 2024-02-05 00:26:47 +0100 | |
commit | 8792fc0bb731e71b4552a90449f3c38a858b50b1 (patch) | |
tree | 01f71df08e838d4cf413a6e3ea36cb42dee6228e /examples/game_of_life | |
parent | 854e967a264e8aa585bba89299d68f03d9278c8b (diff) | |
download | iced-8792fc0bb731e71b4552a90449f3c38a858b50b1.tar.gz iced-8792fc0bb731e71b4552a90449f3c38a858b50b1.tar.bz2 iced-8792fc0bb731e71b4552a90449f3c38a858b50b1.zip |
Fix unused import in `game_of_life` example
Diffstat (limited to 'examples/game_of_life')
-rw-r--r-- | examples/game_of_life/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/game_of_life/src/main.rs b/examples/game_of_life/src/main.rs index 829b4900..9cbb7fff 100644 --- a/examples/game_of_life/src/main.rs +++ b/examples/game_of_life/src/main.rs @@ -15,7 +15,7 @@ use iced::window; use iced::{ Alignment, Application, Command, Element, Length, Settings, Subscription, }; -use std::time::{Duration, Instant}; +use std::time::Duration; pub fn main() -> iced::Result { tracing_subscriber::fmt::init(); |