remove unused imports

main
Jordan Orelli 6 months ago
parent b48e0b65d0
commit 8ed0868e56

@ -2,12 +2,12 @@ use crate::{
error::ExecError, error::ExecError,
run::{Call, Context, Value}, run::{Call, Context, Value},
}; };
use std::{env, fs, io::Write}; use std::fs;
pub struct Mkdir; pub struct Mkdir;
impl Call for Mkdir { impl Call for Mkdir {
fn call(&self, ctx: &mut Context, args: &[Value]) -> Result<Value, ExecError> { fn call(&self, _ctx: &mut Context, args: &[Value]) -> Result<Value, ExecError> {
match args.len() { match args.len() {
0 => { 0 => {
todo!() todo!()

Loading…
Cancel
Save