Skip to content

Commit

Permalink
Fix lint (#53)
Browse files Browse the repository at this point in the history
  • Loading branch information
ofek authored Oct 7, 2023
1 parent fc1b1e6 commit b063431
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/app.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#![allow(clippy::eq_op)]

use std::env;
use std::path::PathBuf;

Expand Down
2 changes: 2 additions & 0 deletions src/commands/self_cmd/metadata.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#![allow(clippy::eq_op)]

use std::fs;

use anyhow::Result;
Expand Down
2 changes: 2 additions & 0 deletions src/commands/self_cmd/pip.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#![allow(clippy::eq_op)]

use anyhow::{Context, Result};
use clap::Args;

Expand Down
2 changes: 2 additions & 0 deletions src/commands/self_cmd/python.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#![allow(clippy::eq_op)]

use anyhow::{Context, Result};
use clap::Args;

Expand Down
2 changes: 2 additions & 0 deletions src/commands/self_cmd/python_path.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#![allow(clippy::eq_op)]

use anyhow::Result;
use clap::Args;

Expand Down

0 comments on commit b063431

Please sign in to comment.