summaryrefslogtreecommitdiff
path: root/pylint/checkers/__init__.py
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2018-09-16 17:33:50 +0200
committerClaudiu Popa <pcmanticore@gmail.com>2018-09-17 09:07:42 +0200
commit3f2842400795ae1aaffc4ae6c35c4ef26857c239 (patch)
tree057fb96b25b851998edce6dd40b8e496755422a1 /pylint/checkers/__init__.py
parentc8e0992d31b831b7d60b1e8582b84068d50c3afd (diff)
downloadpylint-git-3f2842400795ae1aaffc4ae6c35c4ef26857c239.tar.gz
Reformat the code with black
Diffstat (limited to 'pylint/checkers/__init__.py')
-rw-r--r--pylint/checkers/__init__.py31
1 files changed, 20 insertions, 11 deletions
diff --git a/pylint/checkers/__init__.py b/pylint/checkers/__init__.py
index 22eab4466..fcb1f5bf5 100644
--- a/pylint/checkers/__init__.py
+++ b/pylint/checkers/__init__.py
@@ -58,31 +58,32 @@ def table_lines_from_stats(stats, old_stats, columns):
lines = []
for m_type in columns:
new = stats[m_type]
- format = str # pylint: disable=redefined-builtin
+ format = str # pylint: disable=redefined-builtin
if isinstance(new, float):
- format = lambda num: '%.3f' % num
+ format = lambda num: "%.3f" % num
old = old_stats.get(m_type)
if old is not None:
diff_str = diff_string(old, new)
old = format(old)
else:
- old, diff_str = 'NC', 'NC'
- lines += (m_type.replace('_', ' '), format(new), old, diff_str)
+ old, diff_str = "NC", "NC"
+ lines += (m_type.replace("_", " "), format(new), old, diff_str)
return lines
class BaseChecker(OptionsProviderMixIn):
"""base class for checkers"""
+
# checker name (you may reuse an existing one)
- name = None # type: str
+ name = None # type: str
# options level (0 will be displaying in --help, 1 in --long-help)
level = 1
# ordered list of options to control the ckecker behaviour
- options = () # type: Any
+ options = () # type: Any
# messages issued by this checker
- msgs = {} # type: Any
+ msgs = {} # type: Any
# reports issued by this checker
- reports = () # type: Any
+ reports = () # type: Any
# mark this checker as enabled or not.
enabled = True
@@ -96,8 +97,15 @@ class BaseChecker(OptionsProviderMixIn):
OptionsProviderMixIn.__init__(self)
self.linter = linter
- def add_message(self, msg_id, line=None, node=None, args=None, confidence=UNDEFINED,
- col_offset=None):
+ def add_message(
+ self,
+ msg_id,
+ line=None,
+ node=None,
+ args=None,
+ confidence=UNDEFINED,
+ col_offset=None,
+ ):
"""add a message of a given type"""
self.linter.add_message(msg_id, line, node, args, confidence, col_offset)
@@ -122,4 +130,5 @@ def initialize(linter):
"""initialize linter with checkers in this package """
register_plugins(linter, __path__[0])
-__all__ = ('BaseChecker', 'initialize')
+
+__all__ = ("BaseChecker", "initialize")