Skip to content
This repository has been archived by the owner on Oct 14, 2021. It is now read-only.

Commit

Permalink
Remove debug statement that was accidentally committed (#271)
Browse files Browse the repository at this point in the history
Fixes #270
  • Loading branch information
damienmg authored Sep 24, 2020
1 parent 2682e5a commit 2002bb1
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion starlark/src/environment/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,6 @@ pub struct TypeValues {
impl TypeValues {
/// Get a type value if it exists (e.g. list.index).
pub fn get_type_value(&self, obj: &Value, id: &str) -> Option<Value> {
println!("{:?}", self);
self.type_objs
.get(obj.get_type())
.and_then(|o| o.get(id))
Expand Down

0 comments on commit 2002bb1

Please sign in to comment.