From a7b96bb042bab85b6bca3594fe28625dfc86d825 Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Wed, 24 Jan 2024 10:23:24 +0000 Subject: [PATCH] Use mypy as python check command --- README.org | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.org b/README.org index 74650af..199a9e1 100644 --- a/README.org +++ b/README.org @@ -1056,7 +1056,11 @@ Set fill column to 88 and enable display in python buffers (set-fill-column col) (display-fill-column-indicator-mode +1)) - (add-hook 'python-base-mode-hook (lambda () (my/enable-fill-column 88))) + (use-package python + :custom + (python-check-command "mypy") + :config + (add-hook 'python-base-mode-hook (lambda () (my/enable-fill-column 88)))) #+end_src *** Rust #+begin_src emacs-lisp