Skip to content

Commit

Permalink
default to metadata=None for NativeDependenciesRequest
Browse files Browse the repository at this point in the history
  • Loading branch information
tdyas committed Oct 9, 2024
1 parent 8aa15e4 commit 26c8cf0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rust/engine/src/externs/dep_inference.rs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ pub struct PyNativeDependenciesRequest {
#[pymethods]
impl PyNativeDependenciesRequest {
#[new]
#[pyo3(signature = (digest, metadata))]
#[pyo3(signature = (digest, metadata=None))]
fn __new__(digest: PyDigest, metadata: Option<PyInferenceMetadata>) -> Self {
Self {
directory_digest: digest.0,
Expand Down

0 comments on commit 26c8cf0

Please sign in to comment.