removing unused imports
Some checks are pending
/ test (push) Waiting to run

This commit is contained in:
Chris Cochrun 2025-09-30 06:09:31 -05:00
parent 701497395e
commit 75ff187505

View file

@ -1,9 +1,6 @@
use std::{io, path::PathBuf}; use std::{io, path::PathBuf};
use crate::core::{ use crate::core::presentations::Presentation;
presentations::Presentation, service_items::ServiceTrait,
slide::Slide,
};
use cosmic::{ use cosmic::{
dialog::file_chooser::{open::Dialog, FileFilter}, dialog::file_chooser::{open::Dialog, FileFilter},
iced::{alignment::Vertical, ContentFit, Length}, iced::{alignment::Vertical, ContentFit, Length},
@ -11,8 +8,7 @@ use cosmic::{
theme, theme,
widget::{ widget::{
self, button, container, horizontal_space, icon, self, button, container, horizontal_space, icon,
image::{self, Handle}, image::Handle, text, text_input, Space,
text, text_input, Space,
}, },
Element, Task, Element, Task,
}; };