Browse Source

pylint: disable bad-continuation check (incompatible with black)

Fabian Peter Hammerle 3 years ago
parent
commit
96093c8351
1 changed files with 2 additions and 1 deletions
  1. 2 1
      .pylintrc

+ 2 - 1
.pylintrc

@@ -1,6 +1,7 @@
 [MESSAGES CONTROL]
 
-disable=missing-docstring
+disable=bad-continuation, # black
+        missing-docstring
 
 
 [SIMILARITIES]