Skip to content

Commit

Permalink
Fix warning from pyapi
Browse files Browse the repository at this point in the history
  • Loading branch information
rlaj committed May 22, 2024
1 parent 18cef21 commit c9e6090
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rust/pyapi/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -671,7 +671,7 @@ pub fn boot_users(py: Python) -> PyResult<pyapi_metal::framework::users::Users>
if let Some(r) = &ORIGEN_CONFIG.session__user_root {
log_trace!("Setting user session root to {}", r);
let mut users = om::users_mut();
let mut sc = users.default_session_config_mut();
let sc = users.default_session_config_mut();
sc.root = Some(PathBuf::from(r));
}

Expand Down

0 comments on commit c9e6090

Please sign in to comment.