summaryrefslogtreecommitdiffstats
path: root/examples/game_of_life
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-02-05 00:26:47 +0100
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-02-05 00:26:47 +0100
commit8792fc0bb731e71b4552a90449f3c38a858b50b1 (patch)
tree01f71df08e838d4cf413a6e3ea36cb42dee6228e /examples/game_of_life
parent854e967a264e8aa585bba89299d68f03d9278c8b (diff)
downloadiced-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.rs2
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();