From cd7988fe3107a2859102f60c7d75f46edbd8176c Mon Sep 17 00:00:00 2001 From: Nathaniel Nicandro Date: Tue, 4 Jun 2024 04:40:23 -0500 Subject: [PATCH] Cleanup unused code * jupyter-monads: Remove the `thunk` require, it's no longer used. Remove the `jupyter-monads` customization group as there are no customizable variables. --- jupyter-monads.el | 5 ----- 1 file changed, 5 deletions(-) diff --git a/jupyter-monads.el b/jupyter-monads.el index d0b1df42..606ba213 100644 --- a/jupyter-monads.el +++ b/jupyter-monads.el @@ -40,17 +40,12 @@ ;;; Code: (require 'jupyter-base) -(require 'thunk) (declare-function jupyter-handle-message "jupyter-client") (declare-function jupyter-kernel-io "jupyter-client") (declare-function jupyter-generate-request "jupyter-client") (declare-function jupyter-wait-until-idle "jupyter-client" (req &optional timeout progress-msg)) -(defgroup jupyter-monads nil - "Monadic Jupyter" - :group 'jupyter) - (defconst jupyter--return-nil (lambda (state) (cons nil state))) (defun jupyter-return (value)