summaryrefslogtreecommitdiff
path: root/lisp/python-custom.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/python-custom.el')
-rw-r--r--lisp/python-custom.el9
1 files changed, 9 insertions, 0 deletions
diff --git a/lisp/python-custom.el b/lisp/python-custom.el
index 3d076cb..1d48a6f 100644
--- a/lisp/python-custom.el
+++ b/lisp/python-custom.el
@@ -44,5 +44,14 @@
(setq python-indent-guess-indent-offset nil)
+(defun mk/python/remove_unused ()
+ "Removes unused imports"
+ (interactive)
+ (setq command (concat "autoflake --in-place --remove-unused-variables " buffer-file-name))
+ (shell-command command)
+ ;; Reload the modified file
+ (revert-buffer t t)
+ )
+
(provide 'python-custom)
;;; python-custom.el ends here