Skip to content

Commit

Permalink
post-merge fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
tdyas committed Oct 4, 2024
1 parent 79c870f commit b0ce7d0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 3 additions & 1 deletion src/rust/engine/src/externs/interface.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ use pyo3::prelude::{
pyclass, pyfunction, pymethods, pymodule, wrap_pyfunction, PyModule, PyObject,
PyResult as PyO3Result, Python, ToPyObject,
};
use pyo3::types::{PyAnyMethods, PyBytes, PyDict, PyDictMethods, PyList, PyListMethods, PyTuple, PyType};
use pyo3::types::{
PyAnyMethods, PyBytes, PyDict, PyDictMethods, PyList, PyListMethods, PyTuple, PyType,
};
use pyo3::{create_exception, AsPyPointer, Bound, IntoPy, PyAny, PyNativeType, PyRef};
use regex::Regex;
use remote::remote_cache::RemoteCacheWarningsBehavior;
Expand Down
4 changes: 0 additions & 4 deletions src/rust/engine/src/nodes/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -234,10 +234,6 @@ pub fn lift_file_digest_bound(digest: &Bound<'_, PyAny>) -> Result<hashing::Dige
Ok(py_file_digest.0)
}

pub fn lift_file_digest(digest: &PyAny) -> Result<hashing::Digest, String> {
lift_file_digest_bound(&digest.as_borrowed())
}

pub fn unmatched_globs_additional_context() -> Option<String> {
let url = Python::with_gil(|py| {
externs::doc_url(
Expand Down

0 comments on commit b0ce7d0

Please sign in to comment.