Skip to content

Commit

Permalink
Fixed lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jo-asplin-met-no committed Feb 10, 2025
1 parent 11fd161 commit 800708b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ingestion/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ impl PartialEq for Error {
(Pool(a), Pool(b)) => a.to_string() == b.to_string(),
(Parse(a), Parse(b)) => a == b,
(Lock(a), Lock(b)) => a == b,
(Env(a), Env(b)) => a.to_string() == b.to_string(),
(Env(a), Env(b)) => a == b,
_ => false,
}
}
Expand Down

0 comments on commit 800708b

Please sign in to comment.