diff options
author | Divy Srivastava <dj.srivastava23@gmail.com> | 2024-04-13 01:15:38 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-12 21:45:38 +0200 |
commit | c56f2e0fc04f12d3a69c1892d8866323995f3be4 (patch) | |
tree | f7bb0d74b09e0627bd21028b7a1f9ff71ed1d136 /cli/ops | |
parent | 4b62cb54dd135dce494dfe9ddadb87143caf8aa4 (diff) |
chore: upgrade deno_core to 0.274.0 (#23344)
Signed-off-by: Divy Srivastava <dj.srivastava23@gmail.com>
Diffstat (limited to 'cli/ops')
-rw-r--r-- | cli/ops/jupyter.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cli/ops/jupyter.rs b/cli/ops/jupyter.rs index 56bbf7171..1d727c33f 100644 --- a/cli/ops/jupyter.rs +++ b/cli/ops/jupyter.rs @@ -10,7 +10,6 @@ use crate::tools::jupyter::server::StdioMsg; use deno_core::error::AnyError; use deno_core::op2; use deno_core::serde_json; -use deno_core::Op; use deno_core::OpState; use tokio::sync::mpsc; use tokio::sync::Mutex; @@ -23,7 +22,7 @@ deno_core::extension!(deno_jupyter, sender: mpsc::UnboundedSender<StdioMsg>, }, middleware = |op| match op.name { - "op_print" => op_print::DECL, + "op_print" => op_print(), _ => op, }, state = |state, options| { |