Skip to content

Commit cc78dcb

Browse files
committed
Fix missing imports
1 parent 96c0cff commit cc78dcb

3 files changed

Lines changed: 3 additions & 0 deletions

File tree

crates/pet-poetry/src/environment_locations.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ use lazy_static::lazy_static;
66
use log::trace;
77
use pet_core::python_environment::PythonEnvironment;
88
use pet_fs::path::norm_case;
9+
use pet_fs::path::resolve_dot_env;
910
use regex::Regex;
1011
use sha2::{Digest, Sha256};
1112
use std::{

crates/pet-uv/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ use pet_core::{
1515
Configuration, Locator, LocatorKind, RefreshStatePersistence,
1616
};
1717
use pet_fs::path::norm_case;
18+
use pet_fs::path::resolve_dot_env;
1819
use pet_python_utils::executable::{find_executable, find_executables};
1920
use serde::Deserialize;
2021

crates/pet/src/find.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ use pet_core::python_environment::PythonEnvironmentKind;
99
use pet_core::reporter::Reporter;
1010
use pet_core::{Configuration, Locator, LocatorKind};
1111
use pet_env_var_path::get_search_paths_from_env_variables;
12+
use pet_fs::path::resolve_dot_env;
1213
use pet_global_virtualenvs::list_global_virtual_envs_paths;
1314
use pet_pixi::is_pixi_env;
1415
use pet_python_utils::executable::{

0 commit comments

Comments
 (0)