diff --git a/tvix/eval/src/value/mod.rs b/tvix/eval/src/value/mod.rs index 99eb4c657..355678fb7 100644 --- a/tvix/eval/src/value/mod.rs +++ b/tvix/eval/src/value/mod.rs @@ -116,7 +116,8 @@ impl Display for Value { )), // internal types - Value::AttrPath(_) | Value::Blackhole => f.write_str("internal"), + Value::AttrPath(_) => f.write_str("internal"), + Value::Blackhole => f.write_str("internal"), } } }