Fix formatting (#266)

This commit is contained in:
Caner Karaca
2025-03-29 22:46:06 +03:00
committed by GitHub
parent de44373599
commit feb3c47bdc
3 changed files with 11 additions and 12 deletions

View File

@@ -1,11 +1,11 @@
use anyhow::{bail, Result};
use anyhow::{Result, bail};
use derive_new::new;
use nom::{
AsChar, IResult, Parser,
branch::alt,
bytes::complete::{tag, take_while, take_while1, take_while_m_n},
bytes::complete::{tag, take_while, take_while_m_n, take_while1},
character::complete::{space0, space1},
combinator::map,
AsChar, IResult, Parser,
};
use std::{ffi, path::Path, vec};

View File

@@ -1,6 +1,6 @@
use anyhow::{Context, Error, Ok, Result, bail};
use std::{
fs::{create_dir_all, remove_file, write, File, OpenOptions},
fs::{File, OpenOptions, create_dir_all, remove_file, write},
io::{
ErrorKind::{AlreadyExists, NotFound},
Write,