clear unused import
This commit is contained in:
@@ -1,7 +1,6 @@
|
||||
use std::fs::read_to_string;
|
||||
use std::path::PathBuf;
|
||||
use serde_derive::{Serialize, Deserialize};
|
||||
use crate::Position;
|
||||
use std::fs::read_to_string;
|
||||
|
||||
#[derive(Debug, Eq, PartialEq)]
|
||||
pub struct Scene {
|
||||
@@ -24,7 +23,7 @@ impl Scene {
|
||||
for name in intermediate.background.iter() {
|
||||
match name.as_ref() {
|
||||
"" => background.push(None),
|
||||
_ => background.push(Some(name.to_owned())),
|
||||
_ => background.push(Some(name.to_owned())),
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user