summaryrefslogtreecommitdiff
path: root/checkers/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'checkers/utils.py')
-rw-r--r--checkers/utils.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/checkers/utils.py b/checkers/utils.py
index ba371a5..508fb06 100644
--- a/checkers/utils.py
+++ b/checkers/utils.py
@@ -182,14 +182,6 @@ def overrides_a_method(class_node, name):
return True
return False
-def display_type(node):
- """return the type of this node for screen display"""
- if isinstance(node, astng.Instance):
- return 'Instance of'
- elif isinstance(node, astng.Module):
- return 'Module'
- return 'Class'
-
PYMETHODS = set(('__new__', '__init__', '__del__', '__hash__',
'__str__', '__repr__',
'__len__', '__iter__',