diff options
Diffstat (limited to 'cli/tools/jupyter/mod.rs')
-rw-r--r-- | cli/tools/jupyter/mod.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/cli/tools/jupyter/mod.rs b/cli/tools/jupyter/mod.rs index eff7f4f9d..7e88f92c2 100644 --- a/cli/tools/jupyter/mod.rs +++ b/cli/tools/jupyter/mod.rs @@ -125,9 +125,7 @@ pub async fn kernel( fn write(&mut self, buf: &[u8]) -> std::io::Result<usize> { self .0 - .send(StreamContent::stdout( - String::from_utf8_lossy(buf).into_owned(), - )) + .send(StreamContent::stdout(&String::from_utf8_lossy(buf))) .ok(); Ok(buf.len()) } |