Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukas-Heiligenbrunner committed Aug 12, 2024
1 parent 01a5b22 commit 859a4e5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion backend/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ mod repo;
mod scheduler;
mod utils;

use std::path::PathBuf;
use crate::api::init::{init_api, init_repo};
use crate::builder::init::init_build_queue;
use crate::builder::types::Action;
use crate::db::init::init_db;
use crate::scheduler::aur_version_update::start_aur_version_checking;
use crate::utils::logger::init_logger;
use log::{info, warn};
use std::path::PathBuf;
use tokio::sync::broadcast;

static START_BANNER: &str = r"
Expand Down
2 changes: 1 addition & 1 deletion backend/src/pacman-repo-utils/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ mod repo_database;
mod repo_init;
mod repo_remove;

use std::path::PathBuf;
use crate::repo_add::repo_add_impl;
use crate::repo_init::init_repo_impl;
use crate::repo_remove::repo_remove_impl;
use std::path::PathBuf;

pub fn repo_add(pkgfile: &str, db_archive: String, files_archive: String) -> anyhow::Result<()> {
repo_add_impl(pkgfile, db_archive, files_archive)
Expand Down

0 comments on commit 859a4e5

Please sign in to comment.