fix(org): +jupyter: wrong-number-of-args error

Forgot to remove the extra argument when I converted this from an
:around advice to :before.

Fix: #8509
Amend: 979b3aa8c1
This commit is contained in:
Henrik Lissner
2025-09-17 09:57:20 -04:00
parent 7b35a31322
commit 6a630660ac

View File

@@ -52,7 +52,7 @@
;; HACK: ob-juypter don't support ob-async and handles async itself, so
;; piggyback off of `org-babel-jupyter-make-language-alias' to disable it
;; for every current and future kernel language.
(defadvice! +org-jupyter--suppress-ob-async-a (fn _kernel lang)
(defadvice! +org-jupyter--suppress-ob-async-a (_kernel lang)
:before #'org-babel-jupyter-make-language-alias
(with-eval-after-load 'ob-async
(add-to-list 'ob-async-no-async-languages-alist (concat "jupyter-" lang))))