summaryrefslogtreecommitdiff
path: root/checkers/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'checkers/__init__.py')
-rw-r--r--checkers/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/checkers/__init__.py b/checkers/__init__.py
index 181a2b2..51adb4d 100644
--- a/checkers/__init__.py
+++ b/checkers/__init__.py
@@ -59,7 +59,7 @@ def table_lines_from_stats(stats, old_stats, columns):
lines = []
for m_type in columns:
new = stats[m_type]
- format = str
+ format = str # pylint: disable=redefined-builtin
if isinstance(new, float):
format = lambda num: '%.3f' % num
old = old_stats.get(m_type)