fix: linting error

This commit is contained in:
Jnyandeep 2026-07-30 11:14:09 +05:30
parent e6bce5c9a5
commit 1f4a75f374
1 changed files with 4 additions and 5 deletions

View File

@ -2,11 +2,10 @@ use std::io::{self, Write};
use serde_json::to_writer_pretty;
use crate::{
cmd::{Export, ExportCommand, Run},
db::Database,
error::BrokenPipeHandler,
};
use crate::cmd::{Export, ExportCommand, Run};
use crate::db::Database;
use crate::error::BrokenPipeHandler;
impl Run for Export {
fn run(&self) -> anyhow::Result<()> {