summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2021-02-07 14:51:46 +0100
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2021-02-15 21:14:28 +0100
commita01df6cb44d76a984704099674eb608a3473ffc2 (patch)
tree7c7fd7437b692a1884571c462e59ff330d2cd7af
parent8c59abdedaf406ba5b92d5df921523896aa8cf2d (diff)
downloadpylint-git-a01df6cb44d76a984704099674eb608a3473ffc2.tar.gz
Fix E266 too many leading '#' for block comment
-rw-r--r--pylint/pyreverse/utils.py11
1 files changed, 2 insertions, 9 deletions
diff --git a/pylint/pyreverse/utils.py b/pylint/pyreverse/utils.py
index ea853b857..c4c473b9f 100644
--- a/pylint/pyreverse/utils.py
+++ b/pylint/pyreverse/utils.py
@@ -12,23 +12,16 @@
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
# For details: https://github.com/PyCQA/pylint/blob/master/COPYING
-"""
-generic classes/functions for pyreverse core/extensions
-"""
+"""Generic classes/functions for pyreverse core/extensions. """
import os
import re
import sys
-########### pyreverse option utils ##############################
-
-
RCFILE = ".pyreverserc"
def get_default_options():
- """
- Read config file and return list of options
- """
+ """Read config file and return list of options."""
options = []
home = os.environ.get("HOME", "")
if home: