From f412f08f0a971a6eeec311de51d8c5e7b9ab82a5 Mon Sep 17 00:00:00 2001 From: Nathaniel Nicandro Date: Tue, 27 Jun 2023 14:26:25 -0500 Subject: [PATCH] jupyter-channel.el: Require eieio instead of eieio-base `defclass` is defined in the former not the latter. --- jupyter-channel.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/jupyter-channel.el b/jupyter-channel.el index c9e7e653..f788f635 100644 --- a/jupyter-channel.el +++ b/jupyter-channel.el @@ -25,7 +25,8 @@ ;; Defines the `jupyter-channel' interface. ;;; Code: -(require 'eieio-base) + +(require 'eieio) (defclass jupyter-channel () ((type