Skip to content

Commit

Permalink
remove dbg line
Browse files Browse the repository at this point in the history
  • Loading branch information
Kafonek committed Nov 28, 2023
1 parent 4b1a214 commit e8eba46
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/jupyter/iopub_content/display_data.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ where
D: Deserializer<'de>,
{
let v: Option<serde_json::Value> = Option::deserialize(deserializer)?;
dbg!(&v);
match v {
Some(serde_json::Value::Object(map)) if map.is_empty() => Ok(None),
Some(value) => serde_json::from_value(value)
Expand Down

0 comments on commit e8eba46

Please sign in to comment.