Make the use of Self consistent. (#15074)

## Summary

Make the use of `Self` consistent. Mostly done by running `cargo clippy
--fix -- -A clippy::all -W clippy::use_self`.

## Test Plan

<!-- How was it tested? -->
No need.
This commit is contained in:
adamnemecek
2025-08-05 12:17:12 -07:00
committed by GitHub
parent 57f900ad0d
commit 3f83390e34
121 changed files with 1305 additions and 1376 deletions
+1 -1
View File
@@ -690,6 +690,6 @@ impl Hash for PythonInstallationMinorVersionKey {
impl From<PythonInstallationKey> for PythonInstallationMinorVersionKey {
fn from(key: PythonInstallationKey) -> Self {
PythonInstallationMinorVersionKey(key)
Self(key)
}
}