aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemse2019-02-01 00:46:09 -0800
committerGravatar Tom Willemse2019-02-01 00:46:09 -0800
commitd0b5e742d24f2c20400d62c91481768b9958d3a1 (patch)
treeeda8560d010b1f2405e91ab66438a0e81ed3be3b
parent13cc5160fa5c7d17ccef078830f15759dc1fd7e0 (diff)
downloademacs-config-d0b5e742d24f2c20400d62c91481768b9958d3a1.tar.gz
emacs-config-d0b5e742d24f2c20400d62c91481768b9958d3a1.zip
Pass on line length to Black
-rw-r--r--oni-python.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/oni-python.el b/oni-python.el
index 7f3ca7f..f1f310c 100644
--- a/oni-python.el
+++ b/oni-python.el
@@ -4,7 +4,7 @@
;; Author: Tom Willemse <tom@ryuslash.org>
;; Keywords: local
-;; Version: 20190131153854
+;; Version: 20190201004304
;; Package-Requires: (company-jedi fill-column-indicator flycheck rainbow-delimiters reformatter)
;; This program is free software; you can redistribute it and/or modify
@@ -50,7 +50,7 @@ The values are taken from the PEP8 coding standard for Python."
(reformatter-define python-black
:program "black"
- :args "-"
+ :args `("--line-length" ,(number-to-string fill-column) "-")
:lighter ""
:group 'python-black)