From 7798d556bcb5f8bf2d26d1bf2b59e0b4a607e881 Mon Sep 17 00:00:00 2001 From: Jan-Bulthuis Date: Sun, 19 Jul 2026 19:44:40 +0200 Subject: [PATCH] chore: clippy --- src/themes.rs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/themes.rs b/src/themes.rs index 7fcf903..147d6b2 100644 --- a/src/themes.rs +++ b/src/themes.rs @@ -1,6 +1,5 @@ use std::{ collections::{BTreeSet, HashMap, HashSet}, - error::Error, fs, path::Path, sync::OnceLock, @@ -8,10 +7,7 @@ use std::{ use toml::{Table, Value}; use tracing::{info, warn}; -use typst::{ - foundations::{Content, Func, NativeElement, NativeFunc, func}, - text::TextElem, -}; +use typst::foundations::{Func, NativeFunc, func}; use crate::AppConfig;