Skip to content

Commit

Permalink
Fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
zaycev committed Feb 13, 2024
1 parent ea87b2c commit 4c45623
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/rules/if_change_then_change.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ use std::fs::File;
use std::io::{BufRead, BufReader};
use std::path::PathBuf;

use rayon::iter::{ParallelIterator, IntoParallelRefIterator};
use regex::Regex;

use crate::diagnostic;
use crate::git;
use rayon::prelude::*;

#[derive(Debug)]
pub struct IctcBlock {
Expand Down
2 changes: 1 addition & 1 deletion src/rules/pls_no_land.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ extern crate regex;

use crate::diagnostic;
use anyhow::Context;
use rayon::prelude::*;
use rayon::iter::{IntoParallelRefIterator, ParallelIterator};
use regex::Regex;
use std::collections::HashSet;
use std::fs::File;
Expand Down

0 comments on commit 4c45623

Please sign in to comment.